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; /** * Dieser Typ beschreibt die Angaben zum Sterbeeintrag der im Geburtenregister beurkundeten * Person. * *

Java class for TEintragTod complex type. * *

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

 * <complexType name="TEintragTod">
 *   <complexContent>
 *     <extension base="{http://www.fh-giessen.de/epr/Inhalt/v1}TEintrag">
 *       <sequence>
 *         <element name="LetzterTag" type="{http://www.fh-giessen.de/epr/Container/v1}TErwDatum" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TEintragTod", propOrder = { "letzterTag" }) public class TEintragTod extends TEintrag { @XmlElement(name = "LetzterTag") protected String letzterTag; /** * Gets the value of the letzterTag property. * * @return * possible object is * {@link String } * */ public String getLetzterTag() { return letzterTag; } /** * Sets the value of the letzterTag property. * * @param value * allowed object is * {@link String } * */ public void setLetzterTag(String value) { this.letzterTag = value; } }