com.sforce.soap.tooling.Method Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sforce-tooling-api Show documentation
Show all versions of sforce-tooling-api Show documentation
Salesforce Tooling API client
The newest version!
package com.sforce.soap.tooling;
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 Method complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Method">
* <complexContent>
* <extension base="{urn:tooling.soap.sforce.com}Constructor">
* <sequence>
* <element name="returnType" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Method", propOrder = {
"returnType"
})
public class Method
extends Constructor
{
@XmlElement(required = true)
protected String returnType;
/**
* 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;
}
}