// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2010.02.24 at 10:55:05 AM CST // package org.atdl4j.fixatdl.core; import java.math.BigInteger; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for EnumPair_t complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="EnumPair_t"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element ref="{http://www.fixprotocol.org/FIXatdl-1-1/Core}Description" minOccurs="0"/> * </sequence> * <attribute name="enumID" use="required"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <pattern value="[A-Za-z][A-za-z0-9_]{0,255}"/> * </restriction> * </simpleType> * </attribute> * <attribute name="wireValue" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="index" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "EnumPair_t", propOrder = { "description" }) public class EnumPairT { @XmlElement(name = "Description") protected String description; @XmlAttribute(required = true) protected String enumID; @XmlAttribute(required = true) protected String wireValue; @XmlAttribute @XmlSchemaType(name = "nonNegativeInteger") protected BigInteger index; /** * Description of the EnumPair in a given collection of EnumPairs. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } /** * Gets the value of the enumID property. * * @return * possible object is * {@link String } * */ public String getEnumID() { return enumID; } /** * Sets the value of the enumID property. * * @param value * allowed object is * {@link String } * */ public void setEnumID(String value) { this.enumID = value; } /** * Gets the value of the wireValue property. * * @return * possible object is * {@link String } * */ public String getWireValue() { return wireValue; } /** * Sets the value of the wireValue property. * * @param value * allowed object is * {@link String } * */ public void setWireValue(String value) { this.wireValue = value; } /** * Gets the value of the index property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getIndex() { return index; } /** * Sets the value of the index property. * * @param value * allowed object is * {@link BigInteger } * */ public void setIndex(BigInteger value) { this.index = value; } }