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; /** * In Folgebeurkundungen oder Hinweisen kommen Verweise auf Gerichtsbeschlüsse vor. Dieser * Typ sowie TGerichtsbeschlussKurz und TGerichtsbeschluss beschreiben die dafür * erforderlichen Angaben. * *

Java class for TGericht complex type. * *

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

 * <complexType name="TGericht">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Gericht" type="{http://www.fh-giessen.de/epr/latinchars}String.Latin" minOccurs="0"/>
 *         <element name="Name" type="{http://www.fh-giessen.de/epr/latinchars}String.Latin" minOccurs="0"/>
 *         <element name="Land" type="{http://www.fh-giessen.de/epr/latinchars}String.Latin" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TGericht", propOrder = { "gericht", "name", "land" }) @XmlSeeAlso({ TGerichtsbeschlussKurz.class }) public class TGericht { @XmlElement(name = "Gericht") protected String gericht; @XmlElement(name = "Name") protected String name; @XmlElement(name = "Land") protected String land; /** * Gets the value of the gericht property. * * @return * possible object is * {@link String } * */ public String getGericht() { return gericht; } /** * Sets the value of the gericht property. * * @param value * allowed object is * {@link String } * */ public void setGericht(String value) { this.gericht = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the land property. * * @return * possible object is * {@link String } * */ public String getLand() { return land; } /** * Sets the value of the land property. * * @param value * allowed object is * {@link String } * */ public void setLand(String value) { this.land = value; } }