![JAR search and dependency download from the Maven repository](/logo.png)
com.sforce.soap.partner.DescribeNouns Maven / Gradle / Ivy
package com.sforce.soap.partner;
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.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="nouns" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="100" minOccurs="0"/>
* <element name="onlyRenamed" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="includeFields" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"nouns",
"onlyRenamed",
"includeFields"
})
@XmlRootElement(name = "describeNouns")
public class DescribeNouns {
protected List nouns;
protected boolean onlyRenamed;
protected boolean includeFields;
/**
* Gets the value of the nouns 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 nouns property.
*
*
* For example, to add a new item, do as follows:
*
* getNouns().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getNouns() {
if (nouns == null) {
nouns = new ArrayList();
}
return this.nouns;
}
/**
* Gets the value of the onlyRenamed property.
*
*/
public boolean isOnlyRenamed() {
return onlyRenamed;
}
/**
* Sets the value of the onlyRenamed property.
*
*/
public void setOnlyRenamed(boolean value) {
this.onlyRenamed = value;
}
/**
* Gets the value of the includeFields property.
*
*/
public boolean isIncludeFields() {
return includeFields;
}
/**
* Sets the value of the includeFields property.
*
*/
public void setIncludeFields(boolean value) {
this.includeFields = value;
}
}