summaryrefslogtreecommitdiff
path: root/src/main/java/at/gv/util/xsd/ersb/FunktionErsb.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/at/gv/util/xsd/ersb/FunktionErsb.java')
-rw-r--r--src/main/java/at/gv/util/xsd/ersb/FunktionErsb.java128
1 files changed, 128 insertions, 0 deletions
diff --git a/src/main/java/at/gv/util/xsd/ersb/FunktionErsb.java b/src/main/java/at/gv/util/xsd/ersb/FunktionErsb.java
new file mode 100644
index 0000000..60621c8
--- /dev/null
+++ b/src/main/java/at/gv/util/xsd/ersb/FunktionErsb.java
@@ -0,0 +1,128 @@
+
+package at.gv.util.xsd.ersb;
+
+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.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+import at.gv.util.xsd.ersb.basicTypes.Funktion;
+
+
+/**
+ * <p>Java class for FunktionErsb complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * &lt;complexType name="FunktionErsb">
+ * &lt;complexContent>
+ * &lt;extension base="{http://statistik.at/namespace/ur/stammdaten/2#}Funktion">
+ * &lt;sequence>
+ * &lt;element name="FktRegel" type="{http://statistik.at/namespace/ersb/1#}FktRegelTypErsb" minOccurs="0"/>
+ * &lt;element name="Rechtstatsachen" type="{http://statistik.at/namespace/ersb/1#}RechtstatsachenErsb" maxOccurs="unbounded" minOccurs="0"/>
+ * &lt;/sequence>
+ * &lt;attGroup ref="{http://statistik.at/namespace/ersb/1#}ErsbAttributes"/>
+ * &lt;/extension>
+ * &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "FunktionErsb", propOrder = {
+ "fktRegel",
+ "rechtstatsachen"
+})
+public class FunktionErsb
+ extends Funktion
+{
+
+ @XmlElement(name = "FktRegel")
+ protected FktRegelTypErsb fktRegel;
+ @XmlElement(name = "Rechtstatsachen")
+ protected List<RechtstatsachenErsb> rechtstatsachen;
+ @XmlAttribute(name = "aktion", namespace = "http://statistik.at/namespace/ersb/1#")
+ protected String aktion;
+
+ /**
+ * Gets the value of the fktRegel property.
+ *
+ * @return
+ * possible object is
+ * {@link FktRegelTypErsb }
+ *
+ */
+ public FktRegelTypErsb getFktRegel() {
+ return fktRegel;
+ }
+
+ /**
+ * Sets the value of the fktRegel property.
+ *
+ * @param value
+ * allowed object is
+ * {@link FktRegelTypErsb }
+ *
+ */
+ public void setFktRegel(FktRegelTypErsb value) {
+ this.fktRegel = value;
+ }
+
+ /**
+ * Gets the value of the rechtstatsachen property.
+ *
+ * <p>
+ * 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 <CODE>set</CODE> method for the rechtstatsachen property.
+ *
+ * <p>
+ * For example, to add a new item, do as follows:
+ * <pre>
+ * getRechtstatsachen().add(newItem);
+ * </pre>
+ *
+ *
+ * <p>
+ * Objects of the following type(s) are allowed in the list
+ * {@link RechtstatsachenErsb }
+ *
+ *
+ */
+ public List<RechtstatsachenErsb> getRechtstatsachen() {
+ if (rechtstatsachen == null) {
+ rechtstatsachen = new ArrayList<RechtstatsachenErsb>();
+ }
+ return this.rechtstatsachen;
+ }
+
+ /**
+ * Gets the value of the aktion property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getAktion() {
+ return aktion;
+ }
+
+ /**
+ * Sets the value of the aktion property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setAktion(String value) {
+ this.aktion = value;
+ }
+
+}