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.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; /** * Dieser Typ enthält die Angaben zur Fundstelle eines Eintrags sowie Tag und Ort des beurkundeten * Ereignisses. * * Zusätzlich zu den Angaben von TEintragKurz enthält dieser Typ die Elemente Tag, Ort, * die Tag und Ort des Ereignisses aus dem Eintrag aufnehmen. * *

Java class for TEintrag complex type. * *

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

 * <complexType name="TEintrag">
 *   <complexContent>
 *     <extension base="{http://www.fh-giessen.de/epr/Inhalt/v1}TEintragKurz">
 *       <sequence>
 *         <element name="Tag" type="{http://www.fh-giessen.de/epr/Container/v1}TErwDatum" minOccurs="0"/>
 *         <element name="Ort" type="{http://www.fh-giessen.de/epr/latinchars}String.Latin" minOccurs="0"/>
 *         <element name="Kreis" type="{http://www.fh-giessen.de/epr/latinchars}String.Latin" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TEintrag", propOrder = { "tag", "ort", "kreis" }) @XmlSeeAlso({ TEintragTod.class, TEintragEhe.class, TEintragLP.class, TAufloesungTod.class }) public class TEintrag extends TEintragKurz { @XmlElement(name = "Tag") protected String tag; @XmlElement(name = "Ort") protected String ort; @XmlElement(name = "Kreis") protected String kreis; /** * Gets the value of the tag property. * * @return * possible object is * {@link String } * */ public String getTag() { return tag; } /** * Sets the value of the tag property. * * @param value * allowed object is * {@link String } * */ public void setTag(String value) { this.tag = value; } /** * Gets the value of the ort property. * * @return * possible object is * {@link String } * */ public String getOrt() { return ort; } /** * Sets the value of the ort property. * * @param value * allowed object is * {@link String } * */ public void setOrt(String value) { this.ort = value; } /** * Gets the value of the kreis property. * * @return * possible object is * {@link String } * */ public String getKreis() { return kreis; } /** * Sets the value of the kreis property. * * @param value * allowed object is * {@link String } * */ public void setKreis(String value) { this.kreis = value; } }