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

com.sforce.soap.tooling.CustomLinkComponent Maven / Gradle / Ivy

The newest version!

package com.sforce.soap.tooling;

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 CustomLinkComponent complex type. * *

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

 * <complexType name="CustomLinkComponent">
 *   <complexContent>
 *     <extension base="{urn:tooling.soap.sforce.com}DescribeLayoutComponent">
 *       <sequence>
 *         <element name="customLink" type="{urn:tooling.soap.sforce.com}DescribeLayoutButton"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CustomLinkComponent", propOrder = { "customLink" }) public class CustomLinkComponent extends DescribeLayoutComponent { @XmlElement(required = true) protected DescribeLayoutButton customLink; /** * Gets the value of the customLink property. * * @return * possible object is * {@link DescribeLayoutButton } * */ public DescribeLayoutButton getCustomLink() { return customLink; } /** * Sets the value of the customLink property. * * @param value * allowed object is * {@link DescribeLayoutButton } * */ public void setCustomLink(DescribeLayoutButton value) { this.customLink = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy