package de.fh_giessen.epr.wsregister.v1; 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; /** * Informationen über Struktur eines Standesamts, d.h. das Standesamt selbst sowie seine verwalteten Standesämter. * *

Java class for TStAmtStrukturInfo complex type. * *

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

 * <complexType name="TStAmtStrukturInfo">
 *   <complexContent>
 *     <extension base="{http://www.fh-giessen.de/epr/WSRegister/v1}TStAmtInfo">
 *       <sequence>
 *         <element name="VerwaltetesStAmt" type="{http://www.fh-giessen.de/epr/WSRegister/v1}TStAmtInfo" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TStAmtStrukturInfo", propOrder = { "verwaltetesStAmt" }) public class TStAmtStrukturInfo extends TStAmtInfo { @XmlElement(name = "VerwaltetesStAmt") protected List verwaltetesStAmt; /** * Gets the value of the verwaltetesStAmt 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 verwaltetesStAmt property. * *

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

     *    getVerwaltetesStAmt().add(newItem);
     * 
* * *

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