com.sforce.soap.tooling.DescribeLayoutSection Maven / Gradle / Ivy
Show all versions of sforce-tooling-api Show documentation
package com.sforce.soap.tooling;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for DescribeLayoutSection complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="DescribeLayoutSection">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="columns" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="heading" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="layoutRows" type="{urn:tooling.soap.sforce.com}DescribeLayoutRow" maxOccurs="unbounded" minOccurs="0"/>
* <element name="parentLayoutId" type="{urn:tooling.soap.sforce.com}ID"/>
* <element name="rows" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="tabOrder" type="{urn:tooling.soap.sforce.com}TabOrderType"/>
* <element name="useCollapsibleSection" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="useHeading" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DescribeLayoutSection", propOrder = {
"columns",
"heading",
"layoutRows",
"parentLayoutId",
"rows",
"tabOrder",
"useCollapsibleSection",
"useHeading"
})
public class DescribeLayoutSection {
protected int columns;
@XmlElement(required = true, nillable = true)
protected String heading;
protected List layoutRows;
@XmlElement(required = true)
protected String parentLayoutId;
protected int rows;
@XmlElement(required = true)
@XmlSchemaType(name = "string")
protected TabOrderType tabOrder;
protected boolean useCollapsibleSection;
protected boolean useHeading;
/**
* Gets the value of the columns property.
*
*/
public int getColumns() {
return columns;
}
/**
* Sets the value of the columns property.
*
*/
public void setColumns(int value) {
this.columns = value;
}
/**
* Gets the value of the heading property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getHeading() {
return heading;
}
/**
* Sets the value of the heading property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setHeading(String value) {
this.heading = value;
}
/**
* Gets the value of the layoutRows property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the layoutRows property.
*
*
* For example, to add a new item, do as follows:
*
* getLayoutRows().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link DescribeLayoutRow }
*
*
*/
public List getLayoutRows() {
if (layoutRows == null) {
layoutRows = new ArrayList();
}
return this.layoutRows;
}
/**
* Gets the value of the parentLayoutId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getParentLayoutId() {
return parentLayoutId;
}
/**
* Sets the value of the parentLayoutId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setParentLayoutId(String value) {
this.parentLayoutId = value;
}
/**
* Gets the value of the rows property.
*
*/
public int getRows() {
return rows;
}
/**
* Sets the value of the rows property.
*
*/
public void setRows(int value) {
this.rows = value;
}
/**
* Gets the value of the tabOrder property.
*
* @return
* possible object is
* {@link TabOrderType }
*
*/
public TabOrderType getTabOrder() {
return tabOrder;
}
/**
* Sets the value of the tabOrder property.
*
* @param value
* allowed object is
* {@link TabOrderType }
*
*/
public void setTabOrder(TabOrderType value) {
this.tabOrder = value;
}
/**
* Gets the value of the useCollapsibleSection property.
*
*/
public boolean isUseCollapsibleSection() {
return useCollapsibleSection;
}
/**
* Sets the value of the useCollapsibleSection property.
*
*/
public void setUseCollapsibleSection(boolean value) {
this.useCollapsibleSection = value;
}
/**
* Gets the value of the useHeading property.
*
*/
public boolean isUseHeading() {
return useHeading;
}
/**
* Sets the value of the useHeading property.
*
*/
public void setUseHeading(boolean value) {
this.useHeading = value;
}
}