com.sforce.soap.tooling.ExternalMethod 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.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for ExternalMethod complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ExternalMethod">
* <complexContent>
* <extension base="{urn:tooling.soap.sforce.com}ExternalConstructor">
* <sequence>
* <element name="argTypes" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
* <element name="isStatic" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="returnType" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ExternalMethod", propOrder = {
"argTypes",
"isStatic",
"returnType"
})
public class ExternalMethod
extends ExternalConstructor
{
protected List argTypes;
protected boolean isStatic;
@XmlElement(required = true)
protected String returnType;
/**
* Gets the value of the argTypes 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 argTypes property.
*
*
* For example, to add a new item, do as follows:
*
* getArgTypes().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getArgTypes() {
if (argTypes == null) {
argTypes = new ArrayList();
}
return this.argTypes;
}
/**
* Gets the value of the isStatic property.
*
*/
public boolean isIsStatic() {
return isStatic;
}
/**
* Sets the value of the isStatic property.
*
*/
public void setIsStatic(boolean value) {
this.isStatic = value;
}
/**
* Gets the value of the returnType property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getReturnType() {
return returnType;
}
/**
* Sets the value of the returnType property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setReturnType(String value) {
this.returnType = value;
}
}