package at.gv.util.xsd.ersb; 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 at.gv.util.xsd.ersb.basicTypes.Rechtsform; /** *
Java-Klasse für RechtsformErsb complex type. * *
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *
* <complexType name="RechtsformErsb"> * <complexContent> * <extension base="{http://statistik.at/namespace/ur/stammdaten/2#}Rechtsform"> * <attGroup ref="{http://statistik.at/namespace/ersb/1#}ErsbAttributes"/> * </extension> * </complexContent> * </complexType> ** * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RechtsformErsb") public class RechtsformErsb extends Rechtsform { @XmlAttribute(name = "aktion", namespace = "http://statistik.at/namespace/ersb/1#") protected String aktion; /** * Ruft den Wert der aktion-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getAktion() { return aktion; } /** * Legt den Wert der aktion-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setAktion(String value) { this.aktion = value; } }