All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sforce.soap.tooling.Method Maven / Gradle / Ivy

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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy