69 lines
1.8 KiB
Java
69 lines
1.8 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 ICanvas extends com.sforce.soap.partner.IDescribeLayoutComponent {
|
|
|
|
/**
|
|
* element : displayLocation of type {http://www.w3.org/2001/XMLSchema}string
|
|
* java type: java.lang.String
|
|
*/
|
|
|
|
public java.lang.String getDisplayLocation();
|
|
|
|
public void setDisplayLocation(java.lang.String displayLocation);
|
|
|
|
/**
|
|
* element : referenceId of type {http://www.w3.org/2001/XMLSchema}string
|
|
* java type: java.lang.String
|
|
*/
|
|
|
|
public java.lang.String getReferenceId();
|
|
|
|
public void setReferenceId(java.lang.String referenceId);
|
|
|
|
/**
|
|
* 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);
|
|
|
|
|
|
}
|