com.github.markusbernhardt.xmldoclet.xjc.AnnotationElement Maven / Gradle / Ivy
//
// Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.6 generiert
// Siehe http://java.sun.com/xml/jaxb
// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren.
// Generiert: 2013.10.18 um 03:56:47 PM CEST
//
package com.github.markusbernhardt.xmldoclet.xjc;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
/**
* Java-Klasse für annotationElement complex type.
*
*
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
*
* <complexType name="annotationElement">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="type" type="{}typeInfo" minOccurs="0"/>
* </sequence>
* <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="qualified" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="default" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "annotationElement", propOrder = {
"type"
})
public class AnnotationElement {
protected TypeInfo type;
@XmlAttribute(name = "name")
protected String name;
@XmlAttribute(name = "qualified")
protected String qualified;
@XmlAttribute(name = "default")
protected String _default;
/**
* Ruft den Wert der type-Eigenschaft ab.
*
* @return
* possible object is
* {@link TypeInfo }
*
*/
public TypeInfo getType() {
return type;
}
/**
* Legt den Wert der type-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link TypeInfo }
*
*/
public void setType(TypeInfo value) {
this.type = 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 qualified-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getQualified() {
return qualified;
}
/**
* Legt den Wert der qualified-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setQualified(String value) {
this.qualified = value;
}
/**
* Ruft den Wert der default-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDefault() {
return _default;
}
/**
* Legt den Wert der default-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDefault(String value) {
this._default = value;
}
}