// // 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.layout; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; import org.atdl4j.fixatdl.timezones.Timezone; /** * <p>Java class for Clock_t complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="Clock_t"> * <complexContent> * <extension base="{http://www.fixprotocol.org/FIXatdl-1-1/Layout}Control_t"> * <attribute name="initValue" type="{http://www.w3.org/2001/XMLSchema}time" /> * <attribute name="initValueMode" default="0"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}int"> * <enumeration value="0"/> * <enumeration value="1"/> * </restriction> * </simpleType> * </attribute> * <attribute name="localMktTz" type="{http://www.fixprotocol.org/FIXatdl-1-1/Timezones}LocalMktTz_t" /> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Clock_t") public class ClockT extends ControlT { @XmlAttribute @XmlSchemaType(name = "time") protected XMLGregorianCalendar initValue; @XmlAttribute protected Integer initValueMode; @XmlAttribute protected Timezone localMktTz; /** * Gets the value of the initValue property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getInitValue() { return initValue; } /** * Sets the value of the initValue property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setInitValue(XMLGregorianCalendar value) { this.initValue = value; } /** * Gets the value of the initValueMode property. * * @return * possible object is * {@link Integer } * */ public int getInitValueMode() { if (initValueMode == null) { return 0; } else { return initValueMode; } } /** * Sets the value of the initValueMode property. * * @param value * allowed object is * {@link Integer } * */ public void setInitValueMode(Integer value) { this.initValueMode = value; } /** * Gets the value of the localMktTz property. * * @return * possible object is * {@link Timezone } * */ public Timezone getLocalMktTz() { return localMktTz; } /** * Sets the value of the localMktTz property. * * @param value * allowed object is * {@link Timezone } * */ public void setLocalMktTz(Timezone value) { this.localMktTz = value; } }