// // 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.datatype.XMLGregorianCalendar; /** * Derived parameter type corresponding to the FIX "LocalMktDate" type defined in the FIX specification. * * <p>Java class for LocalMktDate_t complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="LocalMktDate_t"> * <complexContent> * <extension base="{http://www.fixprotocol.org/FIXatdl-1-1/Core}Parameter_t"> * <attribute name="minValue" type="{http://www.fixprotocol.org/FIXatdl-1-1/Core}LocalMktDate" /> * <attribute name="maxValue" type="{http://www.fixprotocol.org/FIXatdl-1-1/Core}LocalMktDate" /> * <attribute name="constValue" type="{http://www.fixprotocol.org/FIXatdl-1-1/Core}LocalMktDate" /> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "LocalMktDate_t") public class LocalMktDateT extends ParameterT { @XmlAttribute protected XMLGregorianCalendar minValue; @XmlAttribute protected XMLGregorianCalendar maxValue; @XmlAttribute protected XMLGregorianCalendar constValue; /** * Gets the value of the minValue property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getMinValue() { return minValue; } /** * Sets the value of the minValue property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setMinValue(XMLGregorianCalendar value) { this.minValue = value; } /** * Gets the value of the maxValue property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getMaxValue() { return maxValue; } /** * Sets the value of the maxValue property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setMaxValue(XMLGregorianCalendar value) { this.maxValue = value; } /** * Gets the value of the constValue property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getConstValue() { return constValue; } /** * Sets the value of the constValue property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setConstValue(XMLGregorianCalendar value) { this.constValue = value; } }