com.sforce.soap.tooling.DescribeLayout2 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.XmlType;
/**
* Java class for DescribeLayout complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="DescribeLayout">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="buttonLayoutSection" type="{urn:tooling.soap.sforce.com}DescribeLayoutButtonSection" minOccurs="0"/>
* <element name="detailLayoutSections" type="{urn:tooling.soap.sforce.com}DescribeLayoutSection" maxOccurs="unbounded" minOccurs="0"/>
* <element name="editLayoutSections" type="{urn:tooling.soap.sforce.com}DescribeLayoutSection" maxOccurs="unbounded" minOccurs="0"/>
* <element name="feedView" type="{urn:tooling.soap.sforce.com}DescribeLayoutFeedView" minOccurs="0"/>
* <element name="highlightsPanelLayoutSection" type="{urn:tooling.soap.sforce.com}DescribeLayoutSection" minOccurs="0"/>
* <element name="id" type="{urn:tooling.soap.sforce.com}ID"/>
* <element name="multirowEditLayoutSections" type="{urn:tooling.soap.sforce.com}DescribeLayoutSection" maxOccurs="unbounded" minOccurs="0"/>
* <element name="offlineLinks" type="{urn:tooling.soap.sforce.com}OfflineLink" maxOccurs="unbounded" minOccurs="0"/>
* <element name="quickActionList" type="{urn:tooling.soap.sforce.com}DescribeQuickActionListResult" minOccurs="0"/>
* <element name="relatedContent" type="{urn:tooling.soap.sforce.com}RelatedContent" minOccurs="0"/>
* <element name="relatedLists" type="{urn:tooling.soap.sforce.com}RelatedList" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DescribeLayout", propOrder = {
"buttonLayoutSection",
"detailLayoutSections",
"editLayoutSections",
"feedView",
"highlightsPanelLayoutSection",
"id",
"multirowEditLayoutSections",
"offlineLinks",
"quickActionList",
"relatedContent",
"relatedLists"
})
public class DescribeLayout2 {
protected DescribeLayoutButtonSection buttonLayoutSection;
protected List detailLayoutSections;
protected List editLayoutSections;
protected DescribeLayoutFeedView feedView;
protected DescribeLayoutSection highlightsPanelLayoutSection;
@XmlElement(required = true)
protected String id;
protected List multirowEditLayoutSections;
protected List offlineLinks;
protected DescribeQuickActionListResult quickActionList;
protected RelatedContent relatedContent;
protected List relatedLists;
/**
* Gets the value of the buttonLayoutSection property.
*
* @return
* possible object is
* {@link DescribeLayoutButtonSection }
*
*/
public DescribeLayoutButtonSection getButtonLayoutSection() {
return buttonLayoutSection;
}
/**
* Sets the value of the buttonLayoutSection property.
*
* @param value
* allowed object is
* {@link DescribeLayoutButtonSection }
*
*/
public void setButtonLayoutSection(DescribeLayoutButtonSection value) {
this.buttonLayoutSection = value;
}
/**
* Gets the value of the detailLayoutSections 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 detailLayoutSections property.
*
*
* For example, to add a new item, do as follows:
*
* getDetailLayoutSections().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link DescribeLayoutSection }
*
*
*/
public List getDetailLayoutSections() {
if (detailLayoutSections == null) {
detailLayoutSections = new ArrayList();
}
return this.detailLayoutSections;
}
/**
* Gets the value of the editLayoutSections 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 editLayoutSections property.
*
*
* For example, to add a new item, do as follows:
*
* getEditLayoutSections().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link DescribeLayoutSection }
*
*
*/
public List getEditLayoutSections() {
if (editLayoutSections == null) {
editLayoutSections = new ArrayList();
}
return this.editLayoutSections;
}
/**
* Gets the value of the feedView property.
*
* @return
* possible object is
* {@link DescribeLayoutFeedView }
*
*/
public DescribeLayoutFeedView getFeedView() {
return feedView;
}
/**
* Sets the value of the feedView property.
*
* @param value
* allowed object is
* {@link DescribeLayoutFeedView }
*
*/
public void setFeedView(DescribeLayoutFeedView value) {
this.feedView = value;
}
/**
* Gets the value of the highlightsPanelLayoutSection property.
*
* @return
* possible object is
* {@link DescribeLayoutSection }
*
*/
public DescribeLayoutSection getHighlightsPanelLayoutSection() {
return highlightsPanelLayoutSection;
}
/**
* Sets the value of the highlightsPanelLayoutSection property.
*
* @param value
* allowed object is
* {@link DescribeLayoutSection }
*
*/
public void setHighlightsPanelLayoutSection(DescribeLayoutSection value) {
this.highlightsPanelLayoutSection = value;
}
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setId(String value) {
this.id = value;
}
/**
* Gets the value of the multirowEditLayoutSections 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 multirowEditLayoutSections property.
*
*
* For example, to add a new item, do as follows:
*
* getMultirowEditLayoutSections().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link DescribeLayoutSection }
*
*
*/
public List getMultirowEditLayoutSections() {
if (multirowEditLayoutSections == null) {
multirowEditLayoutSections = new ArrayList();
}
return this.multirowEditLayoutSections;
}
/**
* Gets the value of the offlineLinks 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 offlineLinks property.
*
*
* For example, to add a new item, do as follows:
*
* getOfflineLinks().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link OfflineLink }
*
*
*/
public List getOfflineLinks() {
if (offlineLinks == null) {
offlineLinks = new ArrayList();
}
return this.offlineLinks;
}
/**
* Gets the value of the quickActionList property.
*
* @return
* possible object is
* {@link DescribeQuickActionListResult }
*
*/
public DescribeQuickActionListResult getQuickActionList() {
return quickActionList;
}
/**
* Sets the value of the quickActionList property.
*
* @param value
* allowed object is
* {@link DescribeQuickActionListResult }
*
*/
public void setQuickActionList(DescribeQuickActionListResult value) {
this.quickActionList = value;
}
/**
* Gets the value of the relatedContent property.
*
* @return
* possible object is
* {@link RelatedContent }
*
*/
public RelatedContent getRelatedContent() {
return relatedContent;
}
/**
* Sets the value of the relatedContent property.
*
* @param value
* allowed object is
* {@link RelatedContent }
*
*/
public void setRelatedContent(RelatedContent value) {
this.relatedContent = value;
}
/**
* Gets the value of the relatedLists 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 relatedLists property.
*
*
* For example, to add a new item, do as follows:
*
* getRelatedLists().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link RelatedList }
*
*
*/
public List getRelatedLists() {
if (relatedLists == null) {
relatedLists = new ArrayList();
}
return this.relatedLists;
}
}