package at.gv.util.xsd.ur_V5.search; 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; /** *
Java-Klasse für Funktion complex type. * *
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *
* <complexType name="Funktion">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="FktName" type="{http://statistik.at/namespace/ur/simpleTypes/2#}FunktionTyp"/>
* <element name="FktNameText" type="{http://statistik.at/namespace/ur/simpleTypes/2#}FunktionTextTyp" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Funktion", propOrder = {
"fktName",
"fktNameText"
})
@XmlSeeAlso({
FunktionVollzug.class
})
public abstract class Funktion {
@XmlElement(name = "FktName")
@XmlSchemaType(name = "integer")
protected int fktName;
@XmlElement(name = "FktNameText")
protected String fktNameText;
/**
* Ruft den Wert der fktName-Eigenschaft ab.
*
*/
public int getFktName() {
return fktName;
}
/**
* Legt den Wert der fktName-Eigenschaft fest.
*
*/
public void setFktName(int value) {
this.fktName = value;
}
/**
* Ruft den Wert der fktNameText-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFktNameText() {
return fktNameText;
}
/**
* Legt den Wert der fktNameText-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFktNameText(String value) {
this.fktNameText = value;
}
}