All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.palominolabs.crm.sf.soap.jaxwsstub.metadata.LayoutItem Maven / Gradle / Ivy

The newest version!

package com.palominolabs.crm.sf.soap.jaxwsstub.metadata;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for LayoutItem complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="LayoutItem">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="behavior" type="{http://soap.sforce.com/2006/04/metadata}UiBehavior" minOccurs="0"/>
 *         <element name="customLink" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="emptySpace" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="field" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="height" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="scontrol" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="showLabel" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="showScrollbars" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="width" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "LayoutItem", propOrder = { "behavior", "customLink", "emptySpace", "field", "height", "page", "scontrol", "showLabel", "showScrollbars", "width" }) public class LayoutItem { protected UiBehavior behavior; protected String customLink; protected Boolean emptySpace; protected String field; protected Integer height; protected String page; protected String scontrol; protected Boolean showLabel; protected Boolean showScrollbars; protected String width; /** * Gets the value of the behavior property. * * @return * possible object is * {@link UiBehavior } * */ public UiBehavior getBehavior() { return behavior; } /** * Sets the value of the behavior property. * * @param value * allowed object is * {@link UiBehavior } * */ public void setBehavior(UiBehavior value) { this.behavior = value; } /** * 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 emptySpace property. * * @return * possible object is * {@link Boolean } * */ public Boolean isEmptySpace() { return emptySpace; } /** * Sets the value of the emptySpace property. * * @param value * allowed object is * {@link Boolean } * */ public void setEmptySpace(Boolean value) { this.emptySpace = 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 height property. * * @return * possible object is * {@link Integer } * */ public Integer getHeight() { return height; } /** * Sets the value of the height property. * * @param value * allowed object is * {@link Integer } * */ public void setHeight(Integer value) { this.height = value; } /** * Gets the value of the page property. * * @return * possible object is * {@link String } * */ public String getPage() { return page; } /** * Sets the value of the page property. * * @param value * allowed object is * {@link String } * */ public void setPage(String value) { this.page = value; } /** * Gets the value of the scontrol property. * * @return * possible object is * {@link String } * */ public String getScontrol() { return scontrol; } /** * Sets the value of the scontrol property. * * @param value * allowed object is * {@link String } * */ public void setScontrol(String value) { this.scontrol = value; } /** * Gets the value of the showLabel property. * * @return * possible object is * {@link Boolean } * */ public Boolean isShowLabel() { return showLabel; } /** * Sets the value of the showLabel property. * * @param value * allowed object is * {@link Boolean } * */ public void setShowLabel(Boolean value) { this.showLabel = value; } /** * Gets the value of the showScrollbars property. * * @return * possible object is * {@link Boolean } * */ public Boolean isShowScrollbars() { return showScrollbars; } /** * Sets the value of the showScrollbars property. * * @param value * allowed object is * {@link Boolean } * */ public void setShowScrollbars(Boolean value) { this.showScrollbars = value; } /** * Gets the value of the width property. * * @return * possible object is * {@link String } * */ public String getWidth() { return width; } /** * Sets the value of the width property. * * @param value * allowed object is * {@link String } * */ public void setWidth(String value) { this.width = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy