summaryrefslogtreecommitdiff
path: root/src/main/java/at/gv/util/xsd/ur_V2/basicTypes/OenaceType.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/at/gv/util/xsd/ur_V2/basicTypes/OenaceType.java')
-rw-r--r--src/main/java/at/gv/util/xsd/ur_V2/basicTypes/OenaceType.java81
1 files changed, 0 insertions, 81 deletions
diff --git a/src/main/java/at/gv/util/xsd/ur_V2/basicTypes/OenaceType.java b/src/main/java/at/gv/util/xsd/ur_V2/basicTypes/OenaceType.java
deleted file mode 100644
index 2015fda..0000000
--- a/src/main/java/at/gv/util/xsd/ur_V2/basicTypes/OenaceType.java
+++ /dev/null
@@ -1,81 +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.XmlAttribute;
-import javax.xml.bind.annotation.XmlType;
-import javax.xml.bind.annotation.XmlValue;
-
-
-/**
- * <p>Java class for OenaceType complex type.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- *
- * <pre>
- * &lt;complexType name="OenaceType">
- * &lt;simpleContent>
- * &lt;extension base="&lt;http://statistik.at/namespace/ur/simpleTypes/2#>OenaceCodeTyp">
- * &lt;attribute name="jahr" use="required" type="{http://statistik.at/namespace/ur/simpleTypes/2#}OenaceJahrTyp" />
- * &lt;/extension>
- * &lt;/simpleContent>
- * &lt;/complexType>
- * </pre>
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "OenaceType", propOrder = {
- "value"
-})
-public class OenaceType {
-
- @XmlValue
- protected String value;
- @XmlAttribute(name = "jahr", required = true)
- protected int jahr;
-
- /**
- *
- * Ö\u0096NACE - Branchenkennzahl
- *
- *
- * @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 jahr property.
- *
- */
- public int getJahr() {
- return jahr;
- }
-
- /**
- * Sets the value of the jahr property.
- *
- */
- public void setJahr(int value) {
- this.jahr = value;
- }
-
-}