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