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.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; /** * Dieser Typ enthält die Angaben zu einer gerichtlichen Entscheidung. * * Zusätzlich zu den Angaben des Typs TGerichtsbeschlussKurz kommt das Datum der * Entscheidung im Element EntscheidungsDatum hinzu. * *

Java class for TGerichtsbeschluss complex type. * *

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

 * <complexType name="TGerichtsbeschluss">
 *   <complexContent>
 *     <extension base="{http://www.fh-giessen.de/epr/Inhalt/v1}TGerichtsbeschlussKurz">
 *       <sequence>
 *         <element name="EntscheidungsDatum" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TGerichtsbeschluss", propOrder = { "entscheidungsDatum" }) @XmlSeeAlso({ TTodesErkl.class, TFeststellung.class }) public class TGerichtsbeschluss extends TGerichtsbeschlussKurz { @XmlElement(name = "EntscheidungsDatum") @XmlSchemaType(name = "date") protected XMLGregorianCalendar entscheidungsDatum; /** * Gets the value of the entscheidungsDatum property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getEntscheidungsDatum() { return entscheidungsDatum; } /** * Sets the value of the entscheidungsDatum property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setEntscheidungsDatum(XMLGregorianCalendar value) { this.entscheidungsDatum = value; } }