![JAR search and dependency download from the Maven repository](/logo.png)
com.sforce.soap.tooling.metadata.SummaryLayout 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.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import com.sforce.soap.tooling.SummaryLayoutStyle;
/**
* Java class for SummaryLayout complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="SummaryLayout">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="masterLabel" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="sizeX" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="sizeY" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="sizeZ" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="summaryLayoutItems" type="{urn:metadata.tooling.soap.sforce.com}SummaryLayoutItem" maxOccurs="unbounded" minOccurs="0"/>
* <element name="summaryLayoutStyle" type="{urn:tooling.soap.sforce.com}SummaryLayoutStyle"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SummaryLayout", propOrder = {
"masterLabel",
"sizeX",
"sizeY",
"sizeZ",
"summaryLayoutItems",
"summaryLayoutStyle"
})
public class SummaryLayout {
@XmlElement(required = true)
protected String masterLabel;
protected int sizeX;
protected Integer sizeY;
protected Integer sizeZ;
protected List summaryLayoutItems;
@XmlElement(required = true)
@XmlSchemaType(name = "string")
protected SummaryLayoutStyle summaryLayoutStyle;
/**
* Gets the value of the masterLabel property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMasterLabel() {
return masterLabel;
}
/**
* Sets the value of the masterLabel property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMasterLabel(String value) {
this.masterLabel = value;
}
/**
* Gets the value of the sizeX property.
*
*/
public int getSizeX() {
return sizeX;
}
/**
* Sets the value of the sizeX property.
*
*/
public void setSizeX(int value) {
this.sizeX = value;
}
/**
* Gets the value of the sizeY property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getSizeY() {
return sizeY;
}
/**
* Sets the value of the sizeY property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setSizeY(Integer value) {
this.sizeY = value;
}
/**
* Gets the value of the sizeZ property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getSizeZ() {
return sizeZ;
}
/**
* Sets the value of the sizeZ property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setSizeZ(Integer value) {
this.sizeZ = value;
}
/**
* Gets the value of the summaryLayoutItems 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 summaryLayoutItems property.
*
*
* For example, to add a new item, do as follows:
*
* getSummaryLayoutItems().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link SummaryLayoutItem }
*
*
*/
public List getSummaryLayoutItems() {
if (summaryLayoutItems == null) {
summaryLayoutItems = new ArrayList();
}
return this.summaryLayoutItems;
}
/**
* Gets the value of the summaryLayoutStyle property.
*
* @return
* possible object is
* {@link SummaryLayoutStyle }
*
*/
public SummaryLayoutStyle getSummaryLayoutStyle() {
return summaryLayoutStyle;
}
/**
* Sets the value of the summaryLayoutStyle property.
*
* @param value
* allowed object is
* {@link SummaryLayoutStyle }
*
*/
public void setSummaryLayoutStyle(SummaryLayoutStyle value) {
this.summaryLayoutStyle = value;
}
}