com.sforce.soap.tooling.Canvas 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 Canvas complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Canvas">
* <complexContent>
* <extension base="{urn:tooling.soap.sforce.com}DescribeLayoutComponent">
* <sequence>
* <element name="displayLocation" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="referenceId" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="showLabel" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="showScrollbars" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="suggestedHeight" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="suggestedWidth" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Canvas", propOrder = {
"displayLocation",
"referenceId",
"showLabel",
"showScrollbars",
"suggestedHeight",
"suggestedWidth"
})
public class Canvas
extends DescribeLayoutComponent
{
@XmlElement(required = true)
protected String displayLocation;
@XmlElement(required = true)
protected String referenceId;
protected boolean showLabel;
protected boolean showScrollbars;
@XmlElement(required = true)
protected String suggestedHeight;
@XmlElement(required = true)
protected String suggestedWidth;
/**
* Gets the value of the displayLocation property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDisplayLocation() {
return displayLocation;
}
/**
* Sets the value of the displayLocation property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDisplayLocation(String value) {
this.displayLocation = value;
}
/**
* Gets the value of the referenceId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getReferenceId() {
return referenceId;
}
/**
* Sets the value of the referenceId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setReferenceId(String value) {
this.referenceId = value;
}
/**
* Gets the value of the showLabel property.
*
*/
public boolean isShowLabel() {
return showLabel;
}
/**
* Sets the value of the showLabel property.
*
*/
public void setShowLabel(boolean value) {
this.showLabel = value;
}
/**
* Gets the value of the showScrollbars property.
*
*/
public boolean isShowScrollbars() {
return showScrollbars;
}
/**
* Sets the value of the showScrollbars property.
*
*/
public void setShowScrollbars(boolean value) {
this.showScrollbars = value;
}
/**
* Gets the value of the suggestedHeight property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSuggestedHeight() {
return suggestedHeight;
}
/**
* Sets the value of the suggestedHeight property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSuggestedHeight(String value) {
this.suggestedHeight = value;
}
/**
* Gets the value of the suggestedWidth property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSuggestedWidth() {
return suggestedWidth;
}
/**
* Sets the value of the suggestedWidth property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSuggestedWidth(String value) {
this.suggestedWidth = value;
}
}