package de.fh_giessen.epr.inhalt.v1; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlValue; /** * Dieser Typ gibt an, welches Element sich durch eine Folgebeurkundung oder Hinweisänderung * wie geändert hat. * *

Java class for TAenderung complex type. * *

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

 * <complexType name="TAenderung">
 *   <simpleContent>
 *     <extension base="<http://www.fh-giessen.de/epr/latinchars>String.Latin">
 *       <attribute name="art" use="required" type="{http://www.fh-giessen.de/epr/Inhalt/v1}TAenderungsArt" />
 *     </extension>
 *   </simpleContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TAenderung", propOrder = { "value" }) public class TAenderung { @XmlValue protected String value; @XmlAttribute(name = "art", required = true) protected String art; /** * Einschränkung auf lateinischen Zeichen. * * @return * possible object is * {@link String } * */ public String getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link String } * */ public void setValue(String value) { this.value = value; } /** * Gets the value of the art property. * * @return * possible object is * {@link String } * */ public String getArt() { return art; } /** * Sets the value of the art property. * * @param value * allowed object is * {@link String } * */ public void setArt(String value) { this.art = value; } }