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

com.sugarcrm.ws.soap.TExtensibleDocumented Maven / Gradle / Ivy

There is a newer version: 5.3.3
Show newest version

package com.sugarcrm.ws.soap;

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.XmlAnyElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import org.w3c.dom.Element;


/**
 * 

Java class for tExtensibleDocumented complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="tExtensibleDocumented">
 *   <complexContent>
 *     <extension base="{http://schemas.xmlsoap.org/wsdl/}tDocumented">
 *       <sequence>
 *         <any processContents='lax' namespace='##other' maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "tExtensibleDocumented", namespace = "http://schemas.xmlsoap.org/wsdl/", propOrder = { "any" }) @XmlSeeAlso({ TDefinitions.class, TService.class, TOperation.class, TTypes.class, TMessage.class, TBinding.class, TBindingOperationFault.class, TPort.class, TBindingOperationMessage.class, TBindingOperation.class }) public abstract class TExtensibleDocumented extends TDocumented { @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the any 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 any property. * *

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

     *    getAny().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Element } * {@link Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } }