com.github.markusbernhardt.xmldoclet.xjc.Enum 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.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java-Klasse für enum complex type.
*
*
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
*
* <complexType name="enum">
* <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="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="included" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="extends" type="{}typeInfo" minOccurs="0"/>
* <element name="implements" type="{}typeInfo" maxOccurs="unbounded" minOccurs="0"/>
* <element name="constants" type="{}enumConstant" maxOccurs="unbounded" minOccurs="0"/>
* <element name="annotations" type="{}annotationInstance" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "enum", propOrder = {
"name",
"qualifiedName",
"comment",
"scope",
"included",
"_extends",
"_implements",
"constants",
"annotations"
})
public class Enum {
protected String name;
protected String qualifiedName;
protected String comment;
protected String scope;
protected boolean included;
@XmlElement(name = "extends")
protected TypeInfo _extends;
@XmlElement(name = "implements")
protected List _implements;
protected List constants;
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;
}
/**
* Ruft den Wert der extends-Eigenschaft ab.
*
* @return
* possible object is
* {@link TypeInfo }
*
*/
public TypeInfo getExtends() {
return _extends;
}
/**
* Legt den Wert der extends-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link TypeInfo }
*
*/
public void setExtends(TypeInfo value) {
this._extends = value;
}
/**
* Gets the value of the implements 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 implements property.
*
*
* For example, to add a new item, do as follows:
*
* getImplements().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link TypeInfo }
*
*
*/
public List getImplements() {
if (_implements == null) {
_implements = new ArrayList();
}
return this._implements;
}
/**
* Gets the value of the constants 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 constants property.
*
*
* For example, to add a new item, do as follows:
*
* getConstants().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link EnumConstant }
*
*
*/
public List getConstants() {
if (constants == null) {
constants = new ArrayList();
}
return this.constants;
}
/**
* 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;
}
}