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

net.codesup.jaxb.plugins.delegate.Delegates 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.XmlElement;
import jakarta.xml.bind.annotation.XmlElements;
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", "annotate", "delegateOrDelegateRef" }) @XmlRootElement(name = "delegates") public class Delegates { protected String documentation; protected NullabilityAnnotations annotate; @XmlElements({ @XmlElement(name = "delegate", type = Delegate.class), @XmlElement(name = "delegate-ref", type = DelegateRef.class) }) protected List delegateOrDelegateRef; /** * 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 delegateOrDelegateRef 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 delegateOrDelegateRef property. * *

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

     *    getDelegateOrDelegateRef().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Delegate } * {@link DelegateRef } * * * @return * The value of the delegateOrDelegateRef property. */ public List getDelegateOrDelegateRef() { if (delegateOrDelegateRef == null) { delegateOrDelegateRef = new ArrayList<>(); } return this.delegateOrDelegateRef; } }