com.github.markusbernhardt.xmldoclet.xjc.Annotation 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.17 um 07:16:39 PM CEST
//
package com.github.markusbernhardt.xmldoclet.xjc;
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.XmlType;
/**
* Java-Klasse für annotation complex type.
*
*
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
*
* <complexType name="annotation">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="qualifiedName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="comment" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="scope" type="{}scope" minOccurs="0"/>
* <element name="included" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="elements" type="{}annotationElement" maxOccurs="unbounded" minOccurs="0"/>
* <element name="annotations" type="{}annotationInstance" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "annotation", propOrder = {
"name",
"qualifiedName",
"comment",
"scope",
"included",
"elements",
"annotations"
})
public class Annotation {
protected String name;
protected String qualifiedName;
protected String comment;
protected String scope;
protected boolean included;
protected List elements;
protected List annotations;
/**
* 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 qualifiedName-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getQualifiedName() {
return qualifiedName;
}
/**
* Legt den Wert der qualifiedName-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setQualifiedName(String value) {
this.qualifiedName = value;
}
/**
* Ruft den Wert der comment-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getComment() {
return comment;
}
/**
* Legt den Wert der comment-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setComment(String value) {
this.comment = value;
}
/**
* Ruft den Wert der scope-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getScope() {
return scope;
}
/**
* Legt den Wert der scope-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setScope(String value) {
this.scope = value;
}
/**
* Ruft den Wert der included-Eigenschaft ab.
*
*/
public boolean isIncluded() {
return included;
}
/**
* Legt den Wert der included-Eigenschaft fest.
*
*/
public void setIncluded(boolean value) {
this.included = value;
}
/**
* Gets the value of the elements 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 elements property.
*
*
* For example, to add a new item, do as follows:
*
* getElements().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link AnnotationElement }
*
*
*/
public List getElements() {
if (elements == null) {
elements = new ArrayList();
}
return this.elements;
}
/**
* Gets the value of the annotations 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 annotations property.
*
*
* For example, to add a new item, do as follows:
*
* getAnnotations().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link AnnotationInstance }
*
*
*/
public List getAnnotations() {
if (annotations == null) {
annotations = new ArrayList();
}
return this.annotations;
}
}