package at.gv.util.xsd.mis_v2; 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.XmlSchemaType; import javax.xml.bind.annotation.XmlType; /** *

Java-Klasse für AttributeType complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType name="AttributeType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="AttributeValue" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </sequence>
 *       <attribute name="Name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="FriendlyName" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="NameFormat" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AttributeType", propOrder = { "attributeValue" }) public class AttributeType { @XmlElement(name = "AttributeValue", required = true) protected String attributeValue; @XmlAttribute(name = "Name", required = true) protected String name; @XmlAttribute(name = "FriendlyName") protected String friendlyName; @XmlAttribute(name = "NameFormat") @XmlSchemaType(name = "anyURI") protected String nameFormat; /** * Ruft den Wert der attributeValue-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getAttributeValue() { return attributeValue; } /** * Legt den Wert der attributeValue-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setAttributeValue(String value) { this.attributeValue = value; } /** * Ruft den Wert der name-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Legt den Wert der name-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Ruft den Wert der friendlyName-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getFriendlyName() { return friendlyName; } /** * Legt den Wert der friendlyName-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setFriendlyName(String value) { this.friendlyName = value; } /** * Ruft den Wert der nameFormat-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getNameFormat() { return nameFormat; } /** * Legt den Wert der nameFormat-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setNameFormat(String value) { this.nameFormat = value; } }