com.sforce.soap.tooling.ReportChartComponent 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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for ReportChartComponent complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ReportChartComponent">
* <complexContent>
* <extension base="{urn:tooling.soap.sforce.com}DescribeLayoutComponent">
* <sequence>
* <element name="cacheData" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="contextFilterableField" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="error" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="hideOnError" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="includeContext" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="showTitle" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="size" type="{urn:tooling.soap.sforce.com}ReportChartComponentSize"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ReportChartComponent", propOrder = {
"cacheData",
"contextFilterableField",
"error",
"hideOnError",
"includeContext",
"showTitle",
"size"
})
public class ReportChartComponent
extends DescribeLayoutComponent
{
protected boolean cacheData;
@XmlElement(required = true)
protected String contextFilterableField;
@XmlElement(required = true)
protected String error;
protected boolean hideOnError;
protected boolean includeContext;
protected boolean showTitle;
@XmlElement(required = true)
@XmlSchemaType(name = "string")
protected ReportChartComponentSize size;
/**
* Gets the value of the cacheData property.
*
*/
public boolean isCacheData() {
return cacheData;
}
/**
* Sets the value of the cacheData property.
*
*/
public void setCacheData(boolean value) {
this.cacheData = value;
}
/**
* Gets the value of the contextFilterableField property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getContextFilterableField() {
return contextFilterableField;
}
/**
* Sets the value of the contextFilterableField property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setContextFilterableField(String value) {
this.contextFilterableField = value;
}
/**
* Gets the value of the error property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getError() {
return error;
}
/**
* Sets the value of the error property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setError(String value) {
this.error = value;
}
/**
* Gets the value of the hideOnError property.
*
*/
public boolean isHideOnError() {
return hideOnError;
}
/**
* Sets the value of the hideOnError property.
*
*/
public void setHideOnError(boolean value) {
this.hideOnError = value;
}
/**
* Gets the value of the includeContext property.
*
*/
public boolean isIncludeContext() {
return includeContext;
}
/**
* Sets the value of the includeContext property.
*
*/
public void setIncludeContext(boolean value) {
this.includeContext = value;
}
/**
* Gets the value of the showTitle property.
*
*/
public boolean isShowTitle() {
return showTitle;
}
/**
* Sets the value of the showTitle property.
*
*/
public void setShowTitle(boolean value) {
this.showTitle = value;
}
/**
* Gets the value of the size property.
*
* @return
* possible object is
* {@link ReportChartComponentSize }
*
*/
public ReportChartComponentSize getSize() {
return size;
}
/**
* Sets the value of the size property.
*
* @param value
* allowed object is
* {@link ReportChartComponentSize }
*
*/
public void setSize(ReportChartComponentSize value) {
this.size = value;
}
}