com.sforce.soap.tooling.metadata.SummaryLayoutItem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sforce-tooling-api Show documentation
Show all versions of sforce-tooling-api Show documentation
Salesforce Tooling API client
The newest version!
package com.sforce.soap.tooling.metadata;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for SummaryLayoutItem complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="SummaryLayoutItem">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="customLink" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="field" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="posX" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="posY" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="posZ" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SummaryLayoutItem", propOrder = {
"customLink",
"field",
"posX",
"posY",
"posZ"
})
public class SummaryLayoutItem {
protected String customLink;
protected String field;
protected int posX;
protected Integer posY;
protected Integer posZ;
/**
* Gets the value of the customLink property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCustomLink() {
return customLink;
}
/**
* Sets the value of the customLink property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCustomLink(String value) {
this.customLink = value;
}
/**
* Gets the value of the field property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getField() {
return field;
}
/**
* Sets the value of the field property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setField(String value) {
this.field = value;
}
/**
* Gets the value of the posX property.
*
*/
public int getPosX() {
return posX;
}
/**
* Sets the value of the posX property.
*
*/
public void setPosX(int value) {
this.posX = value;
}
/**
* Gets the value of the posY property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getPosY() {
return posY;
}
/**
* Sets the value of the posY property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setPosY(Integer value) {
this.posY = value;
}
/**
* Gets the value of the posZ property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getPosZ() {
return posZ;
}
/**
* Sets the value of the posZ property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setPosZ(Integer value) {
this.posZ = value;
}
}