// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4 // 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: 2014.01.21 at 01:10:09 AM CET // package cz.cas.lib.proarc.nsesss2; 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.bind.annotation.XmlValue; import javax.xml.datatype.XMLGregorianCalendar; /** * Univerzální prvek pro zaznamenání časového údaje. Datum je zaznamenáno ve tvaru "YYYY-MM-DD". * * <p>Java class for tDatum complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="tDatum"> * <simpleContent> * <extension base="<http://www.w3.org/2001/XMLSchema>date"> * <attribute name="datum" type="{http://www.w3.org/2001/XMLSchema}dateTime" /> * </extension> * </simpleContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "tDatum", namespace = "http://www.mvcr.cz/nsesss/v2", propOrder = { "value" }) public class TDatum { @XmlValue @XmlSchemaType(name = "date") protected XMLGregorianCalendar value; @XmlAttribute(name = "datum") @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar datum; /** * Gets the value of the value property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setValue(XMLGregorianCalendar value) { this.value = value; } /** * Gets the value of the datum property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getDatum() { return datum; } /** * Sets the value of the datum property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setDatum(XMLGregorianCalendar value) { this.datum = value; } }