package at.gv.util.xsd.ersb.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; /** *

Java class for FktRegelTyp complex type. * *

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

 * <complexType name="FktRegelTyp">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="FktRegelVon" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
 *         <element name="FktRegelBis" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
 *         <element name="FktRegelText" type="{http://statistik.at/namespace/ur/simpleTypes/2#}FktRegelTextTyp" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @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; } }