com.sforce.soap.tooling.metadata.LayoutColumn Maven / Gradle / Ivy
Show all versions of sforce-tooling-api Show documentation
package com.sforce.soap.tooling.metadata;
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.XmlType;
/**
* Java class for LayoutColumn complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="LayoutColumn">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="layoutItems" type="{urn:metadata.tooling.soap.sforce.com}LayoutItem" maxOccurs="unbounded" minOccurs="0"/>
* <element name="reserved" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "LayoutColumn", propOrder = {
"layoutItems",
"reserved"
})
public class LayoutColumn {
protected List layoutItems;
protected String reserved;
/**
* Gets the value of the layoutItems 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 layoutItems property.
*
*
* For example, to add a new item, do as follows:
*
* getLayoutItems().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link LayoutItem }
*
*
*/
public List getLayoutItems() {
if (layoutItems == null) {
layoutItems = new ArrayList();
}
return this.layoutItems;
}
/**
* Gets the value of the reserved property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getReserved() {
return reserved;
}
/**
* Sets the value of the reserved property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setReserved(String value) {
this.reserved = value;
}
}