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

net.codesup.jaxb.plugins.delegate.Method Maven / Gradle / Ivy

//
// Diese Datei wurde mit der Eclipse Implementation of JAXB, v4.0.2 generiert 
// Siehe https://eclipse-ee4j.github.io/jaxb-ri 
// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. 
//


package net.codesup.jaxb.plugins.delegate;

import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;


/**
 * 

Java-Klasse für anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

{@code
 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *       
 *       
 *       
 *       
 *       
 *       
 *     
 *   
 * 
 * }
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "documentation", "typeParam", "param" }) @XmlRootElement(name = "method") public class Method { protected String documentation; @XmlElement(name = "type-param") protected List typeParam; protected List param; @XmlAttribute(name = "name") protected String name; @XmlAttribute(name = "type") protected String type; @XmlAttribute(name = "modifiers") protected String modifiers; @XmlAttribute(name = "nullable") protected Boolean nullable; @XmlAttribute(name = "static") protected Boolean _static; /** * Ruft den Wert der documentation-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getDocumentation() { return documentation; } /** * Legt den Wert der documentation-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setDocumentation(String value) { this.documentation = value; } /** * Gets the value of the typeParam 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 Jakarta XML Binding object. * This is why there is not a {@code set} method for the typeParam property. * *

* For example, to add a new item, do as follows: *

     *    getTypeParam().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link TypeParameterType } * * * @return * The value of the typeParam property. */ public List getTypeParam() { if (typeParam == null) { typeParam = new ArrayList<>(); } return this.typeParam; } /** * Gets the value of the param 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 Jakarta XML Binding object. * This is why there is not a {@code set} method for the param property. * *

* For example, to add a new item, do as follows: *

     *    getParam().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link MethodParameterType } * * * @return * The value of the param property. */ public List getParam() { if (param == null) { param = new ArrayList<>(); } return this.param; } /** * 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 type-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getType() { return type; } /** * Legt den Wert der type-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setType(String value) { this.type = value; } /** * Ruft den Wert der modifiers-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getModifiers() { return modifiers; } /** * Legt den Wert der modifiers-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setModifiers(String value) { this.modifiers = value; } /** * Ruft den Wert der nullable-Eigenschaft ab. * * @return * possible object is * {@link Boolean } * */ public Boolean isNullable() { return nullable; } /** * Legt den Wert der nullable-Eigenschaft fest. * * @param value * allowed object is * {@link Boolean } * */ public void setNullable(Boolean value) { this.nullable = value; } /** * Ruft den Wert der static-Eigenschaft ab. * * @return * possible object is * {@link Boolean } * */ public Boolean isStatic() { return _static; } /** * Legt den Wert der static-Eigenschaft fest. * * @param value * allowed object is * {@link Boolean } * */ public void setStatic(Boolean value) { this._static = value; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy