107 lines
2.7 KiB
Java
107 lines
2.7 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 IDescribeLayoutSection {
|
|
|
|
/**
|
|
* element : collapsed of type {http://www.w3.org/2001/XMLSchema}boolean
|
|
* java type: boolean
|
|
*/
|
|
|
|
public boolean getCollapsed();
|
|
|
|
public boolean isCollapsed();
|
|
|
|
public void setCollapsed(boolean collapsed);
|
|
|
|
/**
|
|
* element : columns of type {http://www.w3.org/2001/XMLSchema}int
|
|
* java type: int
|
|
*/
|
|
|
|
public int getColumns();
|
|
|
|
public void setColumns(int columns);
|
|
|
|
/**
|
|
* element : heading of type {http://www.w3.org/2001/XMLSchema}string
|
|
* java type: java.lang.String
|
|
*/
|
|
|
|
public java.lang.String getHeading();
|
|
|
|
public void setHeading(java.lang.String heading);
|
|
|
|
/**
|
|
* element : layoutRows of type {urn:partner.soap.sforce.com}DescribeLayoutRow
|
|
* java type: com.sforce.soap.partner.DescribeLayoutRow[]
|
|
*/
|
|
|
|
public com.sforce.soap.partner.IDescribeLayoutRow[] getLayoutRows();
|
|
|
|
public void setLayoutRows(com.sforce.soap.partner.IDescribeLayoutRow[] layoutRows);
|
|
|
|
/**
|
|
* element : layoutSectionId of type {urn:partner.soap.sforce.com}ID
|
|
* java type: java.lang.String
|
|
*/
|
|
|
|
public java.lang.String getLayoutSectionId();
|
|
|
|
public void setLayoutSectionId(java.lang.String layoutSectionId);
|
|
|
|
/**
|
|
* element : parentLayoutId of type {urn:partner.soap.sforce.com}ID
|
|
* java type: java.lang.String
|
|
*/
|
|
|
|
public java.lang.String getParentLayoutId();
|
|
|
|
public void setParentLayoutId(java.lang.String parentLayoutId);
|
|
|
|
/**
|
|
* element : rows of type {http://www.w3.org/2001/XMLSchema}int
|
|
* java type: int
|
|
*/
|
|
|
|
public int getRows();
|
|
|
|
public void setRows(int rows);
|
|
|
|
/**
|
|
* element : tabOrder of type {urn:partner.soap.sforce.com}TabOrderType
|
|
* java type: com.sforce.soap.partner.TabOrderType
|
|
*/
|
|
|
|
public com.sforce.soap.partner.TabOrderType getTabOrder();
|
|
|
|
public void setTabOrder(com.sforce.soap.partner.TabOrderType tabOrder);
|
|
|
|
/**
|
|
* element : useCollapsibleSection of type {http://www.w3.org/2001/XMLSchema}boolean
|
|
* java type: boolean
|
|
*/
|
|
|
|
public boolean getUseCollapsibleSection();
|
|
|
|
public boolean isUseCollapsibleSection();
|
|
|
|
public void setUseCollapsibleSection(boolean useCollapsibleSection);
|
|
|
|
/**
|
|
* element : useHeading of type {http://www.w3.org/2001/XMLSchema}boolean
|
|
* java type: boolean
|
|
*/
|
|
|
|
public boolean getUseHeading();
|
|
|
|
public boolean isUseHeading();
|
|
|
|
public void setUseHeading(boolean useHeading);
|
|
|
|
|
|
}
|