com.github.markusbernhardt.xmldoclet.xjc.Class 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 class complex type.
*
*
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
*
* <complexType name="class">
* <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="abstract" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="error" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="exception" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="externalizable" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="included" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="serializable" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="generics" type="{}typeParameter" maxOccurs="unbounded" minOccurs="0"/>
* <element name="extends" type="{}typeInfo" minOccurs="0"/>
* <element name="implements" type="{}typeInfo" maxOccurs="unbounded" minOccurs="0"/>
* <element name="constructors" type="{}constructor" maxOccurs="unbounded" minOccurs="0"/>
* <element name="methods" type="{}method" maxOccurs="unbounded" minOccurs="0"/>
* <element name="annotations" type="{}annotationInstance" maxOccurs="unbounded" minOccurs="0"/>
* <element name="fields" type="{}field" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "class", propOrder = {
"name",
"qualifiedName",
"comment",
"scope",
"_abstract",
"error",
"exception",
"externalizable",
"included",
"serializable",
"generics",
"_extends",
"_implements",
"constructors",
"methods",
"annotations",
"fields"
})
public class Class {
protected String name;
protected String qualifiedName;
protected String comment;
protected String scope;
@XmlElement(name = "abstract")
protected boolean _abstract;
protected boolean error;
protected boolean exception;
protected boolean externalizable;
protected boolean included;
protected boolean serializable;
protected List generics;
@XmlElement(name = "extends")
protected TypeInfo _extends;
@XmlElement(name = "implements")
protected List _implements;
protected List constructors;
protected List methods;
protected List annotations;
protected List fields;
/**
* 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 abstract-Eigenschaft ab.
*
*/
public boolean isAbstract() {
return _abstract;
}
/**
* Legt den Wert der abstract-Eigenschaft fest.
*
*/
public void setAbstract(boolean value) {
this._abstract = value;
}
/**
* Ruft den Wert der error-Eigenschaft ab.
*
*/
public boolean isError() {
return error;
}
/**
* Legt den Wert der error-Eigenschaft fest.
*
*/
public void setError(boolean value) {
this.error = value;
}
/**
* Ruft den Wert der exception-Eigenschaft ab.
*
*/
public boolean isException() {
return exception;
}
/**
* Legt den Wert der exception-Eigenschaft fest.
*
*/
public void setException(boolean value) {
this.exception = value;
}
/**
* Ruft den Wert der externalizable-Eigenschaft ab.
*
*/
public boolean isExternalizable() {
return externalizable;
}
/**
* Legt den Wert der externalizable-Eigenschaft fest.
*
*/
public void setExternalizable(boolean value) {
this.externalizable = 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 serializable-Eigenschaft ab.
*
*/
public boolean isSerializable() {
return serializable;
}
/**
* Legt den Wert der serializable-Eigenschaft fest.
*
*/
public void setSerializable(boolean value) {
this.serializable = value;
}
/**
* Gets the value of the generics 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 generics property.
*
*
* For example, to add a new item, do as follows:
*
* getGenerics().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link TypeParameter }
*
*
*/
public List getGenerics() {
if (generics == null) {
generics = new ArrayList();
}
return this.generics;
}
/**
* 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 constructors 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 constructors property.
*
*
* For example, to add a new item, do as follows:
*
* getConstructors().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Constructor }
*
*
*/
public List getConstructors() {
if (constructors == null) {
constructors = new ArrayList();
}
return this.constructors;
}
/**
* Gets the value of the methods 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 methods property.
*
*
* For example, to add a new item, do as follows:
*
* getMethods().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Method }
*
*
*/
public List getMethods() {
if (methods == null) {
methods = new ArrayList();
}
return this.methods;
}
/**
* 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;
}
/**
* Gets the value of the fields 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 fields property.
*
*
* For example, to add a new item, do as follows:
*
* getFields().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Field }
*
*
*/
public List getFields() {
if (fields == null) {
fields = new ArrayList();
}
return this.fields;
}
}