summaryrefslogtreecommitdiff
path: root/src/main/java/at/gv/util/xsd/ur_V2/basicTypes/Funktion.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/at/gv/util/xsd/ur_V2/basicTypes/Funktion.java')
-rw-r--r--src/main/java/at/gv/util/xsd/ur_V2/basicTypes/Funktion.java88
1 files changed, 0 insertions, 88 deletions
diff --git a/src/main/java/at/gv/util/xsd/ur_V2/basicTypes/Funktion.java b/src/main/java/at/gv/util/xsd/ur_V2/basicTypes/Funktion.java
deleted file mode 100644
index b462d17..0000000
--- a/src/main/java/at/gv/util/xsd/ur_V2/basicTypes/Funktion.java
+++ /dev/null
@@ -1,88 +0,0 @@
-
-package at.gv.util.xsd.ur_V2.basicTypes;
-
-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;
-import at.gv.util.xsd.ersb.FunktionErsb;
-
-
-/**
- * <p>Java class for Funktion complex type.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- *
- * <pre>
- * &lt;complexType name="Funktion">
- * &lt;complexContent>
- * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * &lt;sequence>
- * &lt;element name="FktName" type="{http://statistik.at/namespace/ur/simpleTypes/2#}FunktionTyp"/>
- * &lt;element name="FktNameText" type="{http://statistik.at/namespace/ur/simpleTypes/2#}FunktionTextTyp" minOccurs="0"/>
- * &lt;/sequence>
- * &lt;/restriction>
- * &lt;/complexContent>
- * &lt;/complexType>
- * </pre>
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "Funktion", propOrder = {
- "fktName",
- "fktNameText"
-})
-@XmlSeeAlso({
- FunktionErsb.class,
- FunktionVollzug.class
-})
-public abstract class Funktion {
-
- @XmlElement(name = "FktName")
- protected int fktName;
- @XmlElement(name = "FktNameText")
- protected String fktNameText;
-
- /**
- * Gets the value of the fktName property.
- *
- */
- public int getFktName() {
- return fktName;
- }
-
- /**
- * Sets the value of the fktName property.
- *
- */
- public void setFktName(int value) {
- this.fktName = value;
- }
-
- /**
- * Gets the value of the fktNameText property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getFktNameText() {
- return fktNameText;
- }
-
- /**
- * Sets the value of the fktNameText property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setFktNameText(String value) {
- this.fktNameText = value;
- }
-
-}