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.XmlType; import de.fh_giessen.epr.container.v1.TErwZeit; /** * Dieser Typ enthält die Angaben für eine Todeserklärung oder die gerichtliche Feststellung der * Todeszeit. * * Zusätzlich zu den Angaben zum Gerichtsbeschluss werden Todestag und Todeszeit gemäß * des Beschlusses angegeben. * *
Java class for TFeststellung complex type. * *
The following schema fragment specifies the expected content contained within this class. * *
* <complexType name="TFeststellung">
* <complexContent>
* <extension base="{http://www.fh-giessen.de/epr/Inhalt/v1}TGerichtsbeschluss">
* <sequence>
* <element name="Todestag" type="{http://www.fh-giessen.de/epr/Container/v1}TErwDatum" minOccurs="0"/>
* <element name="Todeszeit" type="{http://www.fh-giessen.de/epr/Container/v1}TErwZeit" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TFeststellung", propOrder = {
"todestag",
"todeszeit"
})
public class TFeststellung
extends TGerichtsbeschluss
{
@XmlElement(name = "Todestag")
protected String todestag;
@XmlElement(name = "Todeszeit")
protected TErwZeit todeszeit;
/**
* Gets the value of the todestag property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTodestag() {
return todestag;
}
/**
* Sets the value of the todestag property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTodestag(String value) {
this.todestag = value;
}
/**
* Gets the value of the todeszeit property.
*
* @return
* possible object is
* {@link TErwZeit }
*
*/
public TErwZeit getTodeszeit() {
return todeszeit;
}
/**
* Sets the value of the todeszeit property.
*
* @param value
* allowed object is
* {@link TErwZeit }
*
*/
public void setTodeszeit(TErwZeit value) {
this.todeszeit = value;
}
}