com.sforce.soap.tooling.CustomLinkComponent 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;
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;
}
}