package at.gv.util.xsd.ur_V2.pd; import java.util.ArrayList; import java.util.List; 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 at.gv.util.xsd.ur_V2.search.FunktionVollzug; import at.gv.util.xsd.ur_V2.search.RechtstatsachenVollzug; import at.gv.util.xsd.ur_V2.simpletypes.EvbStatusTyp; /** *

Java class for ZusatzdatenPersonenTyp complex type. * *

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

 * <complexType name="ZusatzdatenPersonenTyp">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element ref="{http://statistik.at/namespace/ur/stammdaten/2#}EvbStatus" minOccurs="0"/>
 *         <element ref="{http://statistik.at/namespace/ur/stammdaten/2#}Funktion" maxOccurs="unbounded" minOccurs="0"/>
 *         <element ref="{http://statistik.at/namespace/ur/stammdaten/2#}Rechtstatsachen" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ZusatzdatenPersonenTyp", propOrder = { "evbStatus", "funktion", "rechtstatsachen" }) public class ZusatzdatenPersonenTyp { @XmlElement(name = "EvbStatus", namespace = "http://statistik.at/namespace/ur/stammdaten/2#") protected EvbStatusTyp evbStatus; @XmlElement(name = "Funktion", namespace = "http://statistik.at/namespace/ur/stammdaten/2#") protected List funktion; @XmlElement(name = "Rechtstatsachen", namespace = "http://statistik.at/namespace/ur/stammdaten/2#") protected List rechtstatsachen; /** * Gets the value of the evbStatus property. * * @return * possible object is * {@link EvbStatusTyp } * */ public EvbStatusTyp getEvbStatus() { return evbStatus; } /** * Sets the value of the evbStatus property. * * @param value * allowed object is * {@link EvbStatusTyp } * */ public void setEvbStatus(EvbStatusTyp value) { this.evbStatus = value; } /** * Gets the value of the funktion property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the funktion property. * *

* For example, to add a new item, do as follows: *

     *    getFunktion().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link FunktionVollzug } * * */ public List getFunktion() { if (funktion == null) { funktion = new ArrayList(); } return this.funktion; } /** * Gets the value of the rechtstatsachen property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the rechtstatsachen property. * *

* For example, to add a new item, do as follows: *

     *    getRechtstatsachen().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link RechtstatsachenVollzug } * * */ public List getRechtstatsachen() { if (rechtstatsachen == null) { rechtstatsachen = new ArrayList(); } return this.rechtstatsachen; } }