summaryrefslogtreecommitdiff
path: root/src/main/java/at/gv/util/xsd/ur_V2/basicTypes/FktRegelTyp.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/at/gv/util/xsd/ur_V2/basicTypes/FktRegelTyp.java')
-rw-r--r--src/main/java/at/gv/util/xsd/ur_V2/basicTypes/FktRegelTyp.java128
1 files changed, 0 insertions, 128 deletions
diff --git a/src/main/java/at/gv/util/xsd/ur_V2/basicTypes/FktRegelTyp.java b/src/main/java/at/gv/util/xsd/ur_V2/basicTypes/FktRegelTyp.java
deleted file mode 100644
index 2448204..0000000
--- a/src/main/java/at/gv/util/xsd/ur_V2/basicTypes/FktRegelTyp.java
+++ /dev/null
@@ -1,128 +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.XmlSchemaType;
-import javax.xml.bind.annotation.XmlSeeAlso;
-import javax.xml.bind.annotation.XmlType;
-import javax.xml.datatype.XMLGregorianCalendar;
-import at.gv.util.xsd.ersb.FktRegelTypErsb;
-
-
-/**
- * <p>Java class for FktRegelTyp complex type.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- *
- * <pre>
- * &lt;complexType name="FktRegelTyp">
- * &lt;complexContent>
- * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * &lt;sequence>
- * &lt;element name="FktRegelVon" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- * &lt;element name="FktRegelBis" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- * &lt;element name="FktRegelText" type="{http://statistik.at/namespace/ur/simpleTypes/2#}FktRegelTextTyp" minOccurs="0"/>
- * &lt;/sequence>
- * &lt;/restriction>
- * &lt;/complexContent>
- * &lt;/complexType>
- * </pre>
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "FktRegelTyp", propOrder = {
- "fktRegelVon",
- "fktRegelBis",
- "fktRegelText"
-})
-@XmlSeeAlso({
- FktRegelTypErsb.class,
- FktRegelTypVollzug.class
-})
-public abstract class FktRegelTyp {
-
- @XmlElement(name = "FktRegelVon")
- @XmlSchemaType(name = "date")
- protected XMLGregorianCalendar fktRegelVon;
- @XmlElement(name = "FktRegelBis")
- @XmlSchemaType(name = "date")
- protected XMLGregorianCalendar fktRegelBis;
- @XmlElement(name = "FktRegelText")
- protected String fktRegelText;
-
- /**
- * Gets the value of the fktRegelVon property.
- *
- * @return
- * possible object is
- * {@link XMLGregorianCalendar }
- *
- */
- public XMLGregorianCalendar getFktRegelVon() {
- return fktRegelVon;
- }
-
- /**
- * Sets the value of the fktRegelVon property.
- *
- * @param value
- * allowed object is
- * {@link XMLGregorianCalendar }
- *
- */
- public void setFktRegelVon(XMLGregorianCalendar value) {
- this.fktRegelVon = value;
- }
-
- /**
- * Gets the value of the fktRegelBis property.
- *
- * @return
- * possible object is
- * {@link XMLGregorianCalendar }
- *
- */
- public XMLGregorianCalendar getFktRegelBis() {
- return fktRegelBis;
- }
-
- /**
- * Sets the value of the fktRegelBis property.
- *
- * @param value
- * allowed object is
- * {@link XMLGregorianCalendar }
- *
- */
- public void setFktRegelBis(XMLGregorianCalendar value) {
- this.fktRegelBis = value;
- }
-
- /**
- * Gets the value of the fktRegelText property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getFktRegelText() {
- return fktRegelText;
- }
-
- /**
- * Sets the value of the fktRegelText property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setFktRegelText(String value) {
- this.fktRegelText = value;
- }
-
-}