package at.gv.util.xsd.szr.pvp; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *
Java-Klasse für anonymous complex type. * *
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *
* <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element ref="{http://egov.gv.at/pvp1.xsd}param" maxOccurs="unbounded"/> * <element name="dummy" type="{http://www.w3.org/2001/XMLSchema}anyType" minOccurs="0"/> * </sequence> * <attribute name="value" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * </restriction> * </complexContent> * </complexType> ** * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "param", "dummy" }) @XmlRootElement(name = "role") public class Role { @XmlElement(required = true) protected List param; protected Object dummy; @XmlAttribute(name = "value", required = true) protected String value; /** * Gets the value of the param property. * *
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the param property.
*
*
* For example, to add a new item, do as follows: *
* getParam().add(newItem); ** * *
* Objects of the following type(s) are allowed in the list * {@link Param } * * */ public List getParam() { if (param == null) { param = new ArrayList(); } return this.param; } /** * Ruft den Wert der dummy-Eigenschaft ab. * * @return * possible object is * {@link Object } * */ public Object getDummy() { return dummy; } /** * Legt den Wert der dummy-Eigenschaft fest. * * @param value * allowed object is * {@link Object } * */ public void setDummy(Object value) { this.dummy = value; } /** * Ruft den Wert der value-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getValue() { return value; } /** * Legt den Wert der value-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setValue(String value) { this.value = value; } }