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

com.sforce.soap.tooling.SymbolTable Maven / Gradle / Ivy

The newest version!

package com.sforce.soap.tooling;

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 class for SymbolTable complex type. * *

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

 * <complexType name="SymbolTable">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="constructors" type="{urn:tooling.soap.sforce.com}Constructor" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="externalReferences" type="{urn:tooling.soap.sforce.com}ExternalReference" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="innerClasses" type="{urn:tooling.soap.sforce.com}SymbolTable" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="interfaces" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="methods" type="{urn:tooling.soap.sforce.com}Method" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="namespace" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="parentClass" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="properties" type="{urn:tooling.soap.sforce.com}VisibilitySymbol" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="tableDeclaration" type="{urn:tooling.soap.sforce.com}Symbol"/>
 *         <element name="variables" type="{urn:tooling.soap.sforce.com}Symbol" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SymbolTable", propOrder = { "constructors", "externalReferences", "id", "innerClasses", "interfaces", "methods", "name", "namespace", "parentClass", "properties", "tableDeclaration", "variables" }) public class SymbolTable { protected List constructors; protected List externalReferences; @XmlElement(required = true) protected String id; protected List innerClasses; protected List interfaces; protected List methods; @XmlElement(required = true) protected String name; @XmlElement(required = true) protected String namespace; @XmlElement(required = true) protected String parentClass; protected List properties; @XmlElement(required = true) protected Symbol tableDeclaration; protected List variables; /** * Gets the value of the constructors 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 constructors property. * *

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

     *    getConstructors().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Constructor } * * */ public List getConstructors() { if (constructors == null) { constructors = new ArrayList(); } return this.constructors; } /** * Gets the value of the externalReferences 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 externalReferences property. * *

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

     *    getExternalReferences().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link ExternalReference } * * */ public List getExternalReferences() { if (externalReferences == null) { externalReferences = new ArrayList(); } return this.externalReferences; } /** * Gets the value of the id property. * * @return * possible object is * {@link String } * */ public String getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link String } * */ public void setId(String value) { this.id = value; } /** * Gets the value of the innerClasses 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 innerClasses property. * *

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

     *    getInnerClasses().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link SymbolTable } * * */ public List getInnerClasses() { if (innerClasses == null) { innerClasses = new ArrayList(); } return this.innerClasses; } /** * Gets the value of the interfaces 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 interfaces property. * *

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

     *    getInterfaces().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getInterfaces() { if (interfaces == null) { interfaces = new ArrayList(); } return this.interfaces; } /** * Gets the value of the methods 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 methods property. * *

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

     *    getMethods().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Method } * * */ public List getMethods() { if (methods == null) { methods = new ArrayList(); } return this.methods; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the namespace property. * * @return * possible object is * {@link String } * */ public String getNamespace() { return namespace; } /** * Sets the value of the namespace property. * * @param value * allowed object is * {@link String } * */ public void setNamespace(String value) { this.namespace = value; } /** * Gets the value of the parentClass property. * * @return * possible object is * {@link String } * */ public String getParentClass() { return parentClass; } /** * Sets the value of the parentClass property. * * @param value * allowed object is * {@link String } * */ public void setParentClass(String value) { this.parentClass = value; } /** * Gets the value of the properties 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 properties property. * *

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

     *    getProperties().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link VisibilitySymbol } * * */ public List getProperties() { if (properties == null) { properties = new ArrayList(); } return this.properties; } /** * Gets the value of the tableDeclaration property. * * @return * possible object is * {@link Symbol } * */ public Symbol getTableDeclaration() { return tableDeclaration; } /** * Sets the value of the tableDeclaration property. * * @param value * allowed object is * {@link Symbol } * */ public void setTableDeclaration(Symbol value) { this.tableDeclaration = value; } /** * Gets the value of the variables 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 variables property. * *

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

     *    getVariables().add(newItem);
     * 
* * *

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





© 2015 - 2024 Weber Informatics LLC | Privacy Policy