![JAR search and dependency download from the Maven repository](/logo.png)
com.sforce.soap.partner.VisualforcePage Maven / Gradle / Ivy
package com.sforce.soap.partner;
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 VisualforcePage complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VisualforcePage">
* <complexContent>
* <extension base="{urn:partner.soap.sforce.com}DescribeLayoutComponent">
* <sequence>
* <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"/>
* <element name="url" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VisualforcePage", propOrder = {
"showLabel",
"showScrollbars",
"suggestedHeight",
"suggestedWidth",
"url"
})
public class VisualforcePage
extends DescribeLayoutComponent
{
protected boolean showLabel;
protected boolean showScrollbars;
@XmlElement(required = true)
protected String suggestedHeight;
@XmlElement(required = true)
protected String suggestedWidth;
@XmlElement(required = true)
protected String url;
/**
* 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;
}
/**
* Gets the value of the url property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUrl() {
return url;
}
/**
* Sets the value of the url property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUrl(String value) {
this.url = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy