com.github.markusbernhardt.xmldoclet.xjc.Field 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.18 um 03:56:47 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.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
/**
* Java-Klasse für field complex type.
*
*
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
*
* <complexType name="field">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="type" type="{}typeInfo" minOccurs="0"/>
* <element name="comment" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="tag" type="{}tagInfo" maxOccurs="unbounded" minOccurs="0"/>
* <element name="constant" type="{http://www.w3.org/2001/XMLSchema}string" 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="qualified" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="scope" type="{}scope" />
* <attribute name="volatile" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
* <attribute name="transient" 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="final" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "field", propOrder = {
"type",
"comment",
"tag",
"constant",
"annotation"
})
public class Field {
protected TypeInfo type;
protected String comment;
protected List tag;
protected String constant;
protected List annotation;
@XmlAttribute(name = "name")
protected String name;
@XmlAttribute(name = "qualified")
protected String qualified;
@XmlAttribute(name = "scope")
protected String scope;
@XmlAttribute(name = "volatile")
protected Boolean _volatile;
@XmlAttribute(name = "transient")
protected Boolean _transient;
@XmlAttribute(name = "static")
protected Boolean _static;
@XmlAttribute(name = "final")
protected Boolean _final;
/**
* Ruft den Wert der type-Eigenschaft ab.
*
* @return
* possible object is
* {@link TypeInfo }
*
*/
public TypeInfo getType() {
return type;
}
/**
* Legt den Wert der type-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link TypeInfo }
*
*/
public void setType(TypeInfo value) {
this.type = 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;
}
/**
* 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;
}
/**
* Ruft den Wert der constant-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getConstant() {
return constant;
}
/**
* Legt den Wert der constant-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setConstant(String value) {
this.constant = value;
}
/**
* 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 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 volatile-Eigenschaft ab.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public boolean isVolatile() {
if (_volatile == null) {
return false;
} else {
return _volatile;
}
}
/**
* Legt den Wert der volatile-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setVolatile(Boolean value) {
this._volatile = value;
}
/**
* Ruft den Wert der transient-Eigenschaft ab.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public boolean isTransient() {
if (_transient == null) {
return false;
} else {
return _transient;
}
}
/**
* Legt den Wert der transient-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setTransient(Boolean value) {
this._transient = 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 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;
}
}