com.sforce.soap.tooling.Constructor Maven / Gradle / Ivy
Show all versions of sforce-tooling-api Show documentation
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.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for Constructor complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Constructor">
* <complexContent>
* <extension base="{urn:tooling.soap.sforce.com}VisibilitySymbol">
* <sequence>
* <element name="parameters" type="{urn:tooling.soap.sforce.com}Parameter" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Constructor", propOrder = {
"parameters"
})
@XmlSeeAlso({
Method.class
})
public class Constructor
extends VisibilitySymbol
{
protected List parameters;
/**
* Gets the value of the parameters 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 parameters property.
*
*
* For example, to add a new item, do as follows:
*
* getParameters().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Parameter }
*
*
*/
public List getParameters() {
if (parameters == null) {
parameters = new ArrayList();
}
return this.parameters;
}
}