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

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


package com.sforce.soap.partner;

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.XmlType;


/**
 * 

Java class for DescribeTabSetResult complex type. * *

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

 * <complexType name="DescribeTabSetResult">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="label" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="logoUrl" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="namespace" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="selected" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="tabSetId" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="tabs" type="{urn:partner.soap.sforce.com}DescribeTab" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DescribeTabSetResult", propOrder = { "description", "label", "logoUrl", "namespace", "selected", "tabSetId", "tabs" }) public class DescribeTabSetResult { @XmlElement(required = true) protected String description; @XmlElement(required = true) protected String label; @XmlElement(required = true) protected String logoUrl; protected String namespace; protected boolean selected; @XmlElement(required = true) protected String tabSetId; protected List tabs; /** * Gets the value of the description property. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } /** * Gets the value of the label property. * * @return * possible object is * {@link String } * */ public String getLabel() { return label; } /** * Sets the value of the label property. * * @param value * allowed object is * {@link String } * */ public void setLabel(String value) { this.label = value; } /** * Gets the value of the logoUrl property. * * @return * possible object is * {@link String } * */ public String getLogoUrl() { return logoUrl; } /** * Sets the value of the logoUrl property. * * @param value * allowed object is * {@link String } * */ public void setLogoUrl(String value) { this.logoUrl = value; } /** * Gets the value of the namespace property. * * @return * possible object is * {@link String } * */ public String getNamespace() { return namespace; } /** * Sets the value of the namespace property. * * @param value * allowed object is * {@link String } * */ public void setNamespace(String value) { this.namespace = value; } /** * Gets the value of the selected property. * */ public boolean isSelected() { return selected; } /** * Sets the value of the selected property. * */ public void setSelected(boolean value) { this.selected = value; } /** * Gets the value of the tabSetId property. * * @return * possible object is * {@link String } * */ public String getTabSetId() { return tabSetId; } /** * Sets the value of the tabSetId property. * * @param value * allowed object is * {@link String } * */ public void setTabSetId(String value) { this.tabSetId = value; } /** * Gets the value of the tabs 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 tabs property. * *

* For example, to add a new item, do as follows: *

     *    getTabs().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link DescribeTab } * * */ public List getTabs() { if (tabs == null) { tabs = new ArrayList(); } return this.tabs; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy