com.github.markusbernhardt.xmldoclet.xjc.Method 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.30 um 10:14:13 PM CET
//
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.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java-Klasse für method complex type.
*
*
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
*
* <complexType name="method">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="comment" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="tag" type="{}tagInfo" maxOccurs="unbounded" minOccurs="0"/>
* <element name="parameter" type="{}methodParameter" maxOccurs="unbounded" minOccurs="0"/>
* <element name="return" type="{}typeInfo" minOccurs="0"/>
* <element name="exception" type="{}typeInfo" maxOccurs="unbounded" minOccurs="0"/>
* <element name="annotation" type="{}annotationInstance" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="signature" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="qualified" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="scope" type="{}scope" />
* <attribute name="abstract" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
* <attribute name="final" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
* <attribute name="included" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
* <attribute name="native" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
* <attribute name="synchronized" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
* <attribute name="static" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
* <attribute name="varArgs" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "method", propOrder = {
"comment",
"tag",
"parameter",
"_return",
"exception",
"annotation"
})
public class Method {
protected String comment;
protected List tag;
protected List parameter;
@XmlElement(name = "return")
protected TypeInfo _return;
protected List exception;
protected List annotation;
@XmlAttribute(name = "name")
protected String name;
@XmlAttribute(name = "signature")
protected String signature;
@XmlAttribute(name = "qualified")
protected String qualified;
@XmlAttribute(name = "scope")
protected String scope;
@XmlAttribute(name = "abstract")
protected Boolean _abstract;
@XmlAttribute(name = "final")
protected Boolean _final;
@XmlAttribute(name = "included")
protected Boolean included;
@XmlAttribute(name = "native")
protected Boolean _native;
@XmlAttribute(name = "synchronized")
protected Boolean _synchronized;
@XmlAttribute(name = "static")
protected Boolean _static;
@XmlAttribute(name = "varArgs")
protected Boolean varArgs;
/**
* 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;
}
/**
* Gets the value of the tag 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 tag property.
*
*
* For example, to add a new item, do as follows:
*
* getTag().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link TagInfo }
*
*
*/
public List getTag() {
if (tag == null) {
tag = new ArrayList();
}
return this.tag;
}
/**
* Gets the value of the parameter 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 parameter property.
*
*
* For example, to add a new item, do as follows:
*
* getParameter().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link MethodParameter }
*
*
*/
public List getParameter() {
if (parameter == null) {
parameter = new ArrayList();
}
return this.parameter;
}
/**
* Ruft den Wert der return-Eigenschaft ab.
*
* @return
* possible object is
* {@link TypeInfo }
*
*/
public TypeInfo getReturn() {
return _return;
}
/**
* Legt den Wert der return-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link TypeInfo }
*
*/
public void setReturn(TypeInfo value) {
this._return = value;
}
/**
* Gets the value of the exception 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 exception property.
*
*
* For example, to add a new item, do as follows:
*
* getException().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link TypeInfo }
*
*
*/
public List getException() {
if (exception == null) {
exception = new ArrayList();
}
return this.exception;
}
/**
* Gets the value of the annotation 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 annotation property.
*
*
* For example, to add a new item, do as follows:
*
* getAnnotation().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link AnnotationInstance }
*
*
*/
public List getAnnotation() {
if (annotation == null) {
annotation = new ArrayList();
}
return this.annotation;
}
/**
* 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 signature-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSignature() {
return signature;
}
/**
* Legt den Wert der signature-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSignature(String value) {
this.signature = 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 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.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public boolean isAbstract() {
if (_abstract == null) {
return false;
} else {
return _abstract;
}
}
/**
* Legt den Wert der abstract-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setAbstract(Boolean value) {
this._abstract = value;
}
/**
* Ruft den Wert der final-Eigenschaft ab.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public boolean isFinal() {
if (_final == null) {
return false;
} else {
return _final;
}
}
/**
* Legt den Wert der final-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setFinal(Boolean value) {
this._final = value;
}
/**
* Ruft den Wert der included-Eigenschaft ab.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public boolean isIncluded() {
if (included == null) {
return true;
} else {
return included;
}
}
/**
* Legt den Wert der included-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setIncluded(Boolean value) {
this.included = value;
}
/**
* Ruft den Wert der native-Eigenschaft ab.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public boolean isNative() {
if (_native == null) {
return false;
} else {
return _native;
}
}
/**
* Legt den Wert der native-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setNative(Boolean value) {
this._native = value;
}
/**
* Ruft den Wert der synchronized-Eigenschaft ab.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public boolean isSynchronized() {
if (_synchronized == null) {
return false;
} else {
return _synchronized;
}
}
/**
* Legt den Wert der synchronized-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setSynchronized(Boolean value) {
this._synchronized = value;
}
/**
* Ruft den Wert der static-Eigenschaft ab.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public boolean isStatic() {
if (_static == null) {
return false;
} else {
return _static;
}
}
/**
* Legt den Wert der static-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setStatic(Boolean value) {
this._static = value;
}
/**
* Ruft den Wert der varArgs-Eigenschaft ab.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public boolean isVarArgs() {
if (varArgs == null) {
return false;
} else {
return varArgs;
}
}
/**
* Legt den Wert der varArgs-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setVarArgs(Boolean value) {
this.varArgs = value;
}
}