All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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.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 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="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="volatile" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="transient" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="static" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="final" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="constant" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="annotations" type="{}annotationInstance" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "field", propOrder = { "type", "name", "qualifiedName", "comment", "scope", "_volatile", "_transient", "_static", "_final", "constant", "annotations" }) public class Field { protected TypeInfo type; protected String name; protected String qualifiedName; protected String comment; protected String scope; @XmlElement(name = "volatile") protected boolean _volatile; @XmlElement(name = "transient") protected boolean _transient; @XmlElement(name = "static") protected boolean _static; @XmlElement(name = "final") protected boolean _final; protected String constant; protected List annotations; /** * 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 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 volatile-Eigenschaft ab. * */ public boolean isVolatile() { return _volatile; } /** * Legt den Wert der volatile-Eigenschaft fest. * */ public void setVolatile(boolean value) { this._volatile = value; } /** * Ruft den Wert der transient-Eigenschaft ab. * */ public boolean isTransient() { return _transient; } /** * Legt den Wert der transient-Eigenschaft fest. * */ public void setTransient(boolean value) { this._transient = 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 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 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 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; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy