public class ExternalReference extends Object
Java class for ExternalReference complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ExternalReference">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="methods" type="{urn:tooling.soap.sforce.com}ExternalMethod" 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="references" type="{urn:tooling.soap.sforce.com}Position" maxOccurs="unbounded" minOccurs="0"/>
<element name="variables" type="{urn:tooling.soap.sforce.com}ExternalSymbol" maxOccurs="unbounded" minOccurs="0"/>
</sequence>
</restriction>
</complexContent>
</complexType>
| Modifier and Type | Field and Description |
|---|---|
protected List<ExternalMethod> |
methods |
protected String |
name |
protected String |
namespace |
protected List<Position> |
references |
protected List<ExternalSymbol> |
variables |
| Constructor and Description |
|---|
ExternalReference() |
| Modifier and Type | Method and Description |
|---|---|
List<ExternalMethod> |
getMethods()
Gets the value of the methods property.
|
String |
getName()
Gets the value of the name property.
|
String |
getNamespace()
Gets the value of the namespace property.
|
List<Position> |
getReferences()
Gets the value of the references property.
|
List<ExternalSymbol> |
getVariables()
Gets the value of the variables property.
|
void |
setName(String value)
Sets the value of the name property.
|
void |
setNamespace(String value)
Sets the value of the namespace property.
|
protected List<ExternalMethod> methods
protected String name
protected String namespace
protected List<ExternalSymbol> variables
public List<ExternalMethod> getMethods()
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
ExternalMethod
public String getName()
Stringpublic void setName(String value)
value - allowed object is
Stringpublic String getNamespace()
Stringpublic void setNamespace(String value)
value - allowed object is
Stringpublic List<Position> getReferences()
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 references property.
For example, to add a new item, do as follows:
getReferences().add(newItem);
Objects of the following type(s) are allowed in the list
Position
public List<ExternalSymbol> getVariables()
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
ExternalSymbol
Copyright © 2016. All rights reserved.