// // 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 javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** * Derived parameter type corresponding to the FIX "Language" type defined in the FIX specification. * * <p>Java class for Language_t complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="Language_t"> * <complexContent> * <extension base="{http://www.fixprotocol.org/FIXatdl-1-1/Core}Parameter_t"> * <attribute name="constValue" type="{http://www.fixprotocol.org/FIXatdl-1-1/Core}Language" /> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Language_t") public class LanguageT extends ParameterT { @XmlAttribute @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String constValue; /** * Gets the value of the constValue property. * * @return * possible object is * {@link String } * */ public String getConstValue() { return constValue; } /** * Sets the value of the constValue property. * * @param value * allowed object is * {@link String } * */ public void setConstValue(String value) { this.constValue = value; } }