package de.fh_giessen.epr.inhalt.v1; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; /** * Dieser Typ enthält die Angaben zu einer gerichtlichen Entscheidung einer Todeserklärung. * *

Java class for TTodesErkl complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="TTodesErkl">
 *   <complexContent>
 *     <extension base="{http://www.fh-giessen.de/epr/Inhalt/v1}TGerichtsbeschluss">
 *       <sequence>
 *         <element name="Datum" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
 *         <element name="Uhrzeit" type="{http://www.w3.org/2001/XMLSchema}time" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TTodesErkl", propOrder = { "datum", "uhrzeit" }) public class TTodesErkl extends TGerichtsbeschluss { @XmlElement(name = "Datum") @XmlSchemaType(name = "date") protected XMLGregorianCalendar datum; @XmlElement(name = "Uhrzeit") @XmlSchemaType(name = "time") protected XMLGregorianCalendar uhrzeit; /** * 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; } /** * Gets the value of the uhrzeit property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getUhrzeit() { return uhrzeit; } /** * Sets the value of the uhrzeit property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setUhrzeit(XMLGregorianCalendar value) { this.uhrzeit = value; } }