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

com.sforce.soap.partner.DescribeLayoutComponent Maven / Gradle / Ivy


package com.sforce.soap.partner;

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.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for DescribeLayoutComponent complex type. * *

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

 * <complexType name="DescribeLayoutComponent">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="displayLines" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="tabOrder" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="type" type="{urn:partner.soap.sforce.com}layoutComponentType"/>
 *         <element name="value" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DescribeLayoutComponent", propOrder = { "displayLines", "tabOrder", "type", "value" }) @XmlSeeAlso({ FieldComponent.class, FieldLayoutComponent.class, VisualforcePage.class, Canvas.class, ReportChartComponent.class, AnalyticsCloudComponent.class, CustomLinkComponent.class }) public class DescribeLayoutComponent { protected int displayLines; protected int tabOrder; @XmlElement(required = true) @XmlSchemaType(name = "string") protected LayoutComponentType type; @XmlElement(required = true, nillable = true) protected String value; /** * Gets the value of the displayLines property. * */ public int getDisplayLines() { return displayLines; } /** * Sets the value of the displayLines property. * */ public void setDisplayLines(int value) { this.displayLines = value; } /** * Gets the value of the tabOrder property. * */ public int getTabOrder() { return tabOrder; } /** * Sets the value of the tabOrder property. * */ public void setTabOrder(int value) { this.tabOrder = value; } /** * Gets the value of the type property. * * @return * possible object is * {@link LayoutComponentType } * */ public LayoutComponentType getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link LayoutComponentType } * */ public void setType(LayoutComponentType value) { this.type = value; } /** * Gets the value of the value property. * * @return * possible object is * {@link String } * */ public String getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link String } * */ public void setValue(String value) { this.value = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy