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.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 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="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="final" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="included" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="native" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="synchronized" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="static" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="varArgs" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="signature" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="parameters" type="{}methodParameter" maxOccurs="unbounded" minOccurs="0"/>
* <element name="return" type="{}typeInfo" minOccurs="0"/>
* <element name="throws" type="{}typeInfo" maxOccurs="unbounded" minOccurs="0"/>
* <element name="annotations" type="{}annotationInstance" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "method", propOrder = {
"name",
"qualifiedName",
"comment",
"scope",
"_abstract",
"_final",
"included",
"_native",
"_synchronized",
"_static",
"varArgs",
"signature",
"parameters",
"_return",
"_throws",
"annotations"
})
public class Method {
protected String name;
protected String qualifiedName;
protected String comment;
protected String scope;
@XmlElement(name = "abstract")
protected boolean _abstract;
@XmlElement(name = "final")
protected boolean _final;
protected boolean included;
@XmlElement(name = "native")
protected boolean _native;
@XmlElement(name = "synchronized")
protected boolean _synchronized;
@XmlElement(name = "static")
protected boolean _static;
protected boolean varArgs;
protected String signature;
protected List parameters;
@XmlElement(name = "return")
protected TypeInfo _return;
@XmlElement(name = "throws")
protected List _throws;
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 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 final-Eigenschaft ab.
*
*/
public boolean isFinal() {
return _final;
}
/**
* Legt den Wert der final-Eigenschaft fest.
*
*/
public void setFinal(boolean value) {
this._final = 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 native-Eigenschaft ab.
*
*/
public boolean isNative() {
return _native;
}
/**
* Legt den Wert der native-Eigenschaft fest.
*
*/
public void setNative(boolean value) {
this._native = value;
}
/**
* Ruft den Wert der synchronized-Eigenschaft ab.
*
*/
public boolean isSynchronized() {
return _synchronized;
}
/**
* Legt den Wert der synchronized-Eigenschaft fest.
*
*/
public void setSynchronized(boolean value) {
this._synchronized = value;
}
/**
* Ruft den Wert der static-Eigenschaft ab.
*
*/
public boolean isStatic() {
return _static;
}
/**
* Legt den Wert der static-Eigenschaft fest.
*
*/
public void setStatic(boolean value) {
this._static = value;
}
/**
* Ruft den Wert der varArgs-Eigenschaft ab.
*
*/
public boolean isVarArgs() {
return varArgs;
}
/**
* Legt den Wert der varArgs-Eigenschaft fest.
*
*/
public void setVarArgs(boolean value) {
this.varArgs = 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;
}
/**
* Gets the value of the parameters 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 parameters property.
*
*
* For example, to add a new item, do as follows:
*
* getParameters().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link MethodParameter }
*
*
*/
public List getParameters() {
if (parameters == null) {
parameters = new ArrayList();
}
return this.parameters;
}
/**
* 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 throws 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 throws property.
*
*
* For example, to add a new item, do as follows:
*
* getThrows().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link TypeInfo }
*
*
*/
public List getThrows() {
if (_throws == null) {
_throws = new ArrayList();
}
return this._throws;
}
/**
* 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;
}
}