60 lines
1.5 KiB
Java
60 lines
1.5 KiB
Java
package com.sforce.soap.partner;
|
|
|
|
/**
|
|
* This is a generated class for the SObject Enterprise API.
|
|
* Do not edit this file, as your changes will be lost.
|
|
*/
|
|
public interface IVisualforcePage extends com.sforce.soap.partner.IDescribeLayoutComponent {
|
|
|
|
/**
|
|
* element : showLabel of type {http://www.w3.org/2001/XMLSchema}boolean
|
|
* java type: boolean
|
|
*/
|
|
|
|
public boolean getShowLabel();
|
|
|
|
public boolean isShowLabel();
|
|
|
|
public void setShowLabel(boolean showLabel);
|
|
|
|
/**
|
|
* element : showScrollbars of type {http://www.w3.org/2001/XMLSchema}boolean
|
|
* java type: boolean
|
|
*/
|
|
|
|
public boolean getShowScrollbars();
|
|
|
|
public boolean isShowScrollbars();
|
|
|
|
public void setShowScrollbars(boolean showScrollbars);
|
|
|
|
/**
|
|
* element : suggestedHeight of type {http://www.w3.org/2001/XMLSchema}string
|
|
* java type: java.lang.String
|
|
*/
|
|
|
|
public java.lang.String getSuggestedHeight();
|
|
|
|
public void setSuggestedHeight(java.lang.String suggestedHeight);
|
|
|
|
/**
|
|
* element : suggestedWidth of type {http://www.w3.org/2001/XMLSchema}string
|
|
* java type: java.lang.String
|
|
*/
|
|
|
|
public java.lang.String getSuggestedWidth();
|
|
|
|
public void setSuggestedWidth(java.lang.String suggestedWidth);
|
|
|
|
/**
|
|
* element : url of type {http://www.w3.org/2001/XMLSchema}string
|
|
* java type: java.lang.String
|
|
*/
|
|
|
|
public java.lang.String getUrl();
|
|
|
|
public void setUrl(java.lang.String url);
|
|
|
|
|
|
}
|