![JAR search and dependency download from the Maven repository](/logo.png)
com.sforce.soap.partner.DescribeCompactLayout Maven / Gradle / Ivy
package com.sforce.soap.partner;
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 DescribeCompactLayout complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="DescribeCompactLayout">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="actions" type="{urn:partner.soap.sforce.com}DescribeLayoutButton" maxOccurs="unbounded" minOccurs="0"/>
* <element name="fieldItems" type="{urn:partner.soap.sforce.com}DescribeLayoutItem" maxOccurs="unbounded" minOccurs="0"/>
* <element name="id" type="{urn:partner.soap.sforce.com}ID"/>
* <element name="imageItems" type="{urn:partner.soap.sforce.com}DescribeLayoutItem" maxOccurs="unbounded" minOccurs="0"/>
* <element name="label" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="objectType" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DescribeCompactLayout", propOrder = {
"actions",
"fieldItems",
"id",
"imageItems",
"label",
"name",
"objectType"
})
public class DescribeCompactLayout {
protected List actions;
protected List fieldItems;
@XmlElement(required = true)
protected String id;
protected List imageItems;
@XmlElement(required = true)
protected String label;
@XmlElement(required = true)
protected String name;
@XmlElement(required = true)
protected String objectType;
/**
* Gets the value of the actions 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 actions property.
*
*
* For example, to add a new item, do as follows:
*
* getActions().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link DescribeLayoutButton }
*
*
*/
public List getActions() {
if (actions == null) {
actions = new ArrayList();
}
return this.actions;
}
/**
* Gets the value of the fieldItems 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 fieldItems property.
*
*
* For example, to add a new item, do as follows:
*
* getFieldItems().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link DescribeLayoutItem }
*
*
*/
public List getFieldItems() {
if (fieldItems == null) {
fieldItems = new ArrayList();
}
return this.fieldItems;
}
/**
* 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 imageItems 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 imageItems property.
*
*
* For example, to add a new item, do as follows:
*
* getImageItems().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link DescribeLayoutItem }
*
*
*/
public List getImageItems() {
if (imageItems == null) {
imageItems = new ArrayList();
}
return this.imageItems;
}
/**
* Gets the value of the label property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLabel() {
return label;
}
/**
* Sets the value of the label property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLabel(String value) {
this.label = value;
}
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the objectType property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getObjectType() {
return objectType;
}
/**
* Sets the value of the objectType property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setObjectType(String value) {
this.objectType = value;
}
}