net.codesup.jaxb.plugins.delegate.Delegate 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.JAXBElement;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlElementRef;
import jakarta.xml.bind.annotation.XmlElementRefs;
import jakarta.xml.bind.annotation.XmlID;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.adapters.CollapsedStringAdapter;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* 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",
"annotate",
"typeParamOrTypeArg",
"method"
})
@XmlRootElement(name = "delegate")
public class Delegate {
protected String documentation;
protected NullabilityAnnotations annotate;
@XmlElementRefs({
@XmlElementRef(name = "type-param", namespace = "http://www.codesup.net/jaxb/plugins/delegate", type = JAXBElement.class, required = false),
@XmlElementRef(name = "type-arg", namespace = "http://www.codesup.net/jaxb/plugins/delegate", type = JAXBElement.class, required = false)
})
protected List> typeParamOrTypeArg;
protected List method;
@XmlAttribute(name = "id")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlID
@XmlSchemaType(name = "ID")
protected String id;
@XmlAttribute(name = "class", required = true)
protected String clazz;
@XmlAttribute(name = "static")
protected Boolean _static;
@XmlAttribute(name = "lazy")
protected Boolean lazy;
@XmlAttribute(name = "target")
protected String target;
/**
* 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;
}
/**
* Ruft den Wert der annotate-Eigenschaft ab.
*
* @return
* possible object is
* {@link NullabilityAnnotations }
*
*/
public NullabilityAnnotations getAnnotate() {
return annotate;
}
/**
* Legt den Wert der annotate-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link NullabilityAnnotations }
*
*/
public void setAnnotate(NullabilityAnnotations value) {
this.annotate = value;
}
/**
* Gets the value of the typeParamOrTypeArg 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 typeParamOrTypeArg property.
*
*
* For example, to add a new item, do as follows:
*
* getTypeParamOrTypeArg().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link JAXBElement }{@code <}{@link TypeParameterType }{@code >}
* {@link JAXBElement }{@code <}{@link TypeParameterType }{@code >}
*
*
* @return
* The value of the typeParamOrTypeArg property.
*/
public List> getTypeParamOrTypeArg() {
if (typeParamOrTypeArg == null) {
typeParamOrTypeArg = new ArrayList<>();
}
return this.typeParamOrTypeArg;
}
/**
* Gets the value of the method 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 method property.
*
*
* For example, to add a new item, do as follows:
*
* getMethod().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Method }
*
*
* @return
* The value of the method property.
*/
public List getMethod() {
if (method == null) {
method = new ArrayList<>();
}
return this.method;
}
/**
* Ruft den Wert der id-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getId() {
return id;
}
/**
* Legt den Wert der id-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setId(String value) {
this.id = value;
}
/**
* Ruft den Wert der clazz-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getClazz() {
return clazz;
}
/**
* Legt den Wert der clazz-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setClazz(String value) {
this.clazz = 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;
}
/**
* Ruft den Wert der lazy-Eigenschaft ab.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isLazy() {
return lazy;
}
/**
* Legt den Wert der lazy-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setLazy(Boolean value) {
this.lazy = value;
}
/**
* Ruft den Wert der target-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTarget() {
return target;
}
/**
* Legt den Wert der target-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTarget(String value) {
this.target = value;
}
}