com.sforce.soap.partner.FieldComponent 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.XmlType;
/**
* Java class for FieldComponent complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="FieldComponent">
* <complexContent>
* <extension base="{urn:partner.soap.sforce.com}DescribeLayoutComponent">
* <sequence>
* <element name="field" type="{urn:partner.soap.sforce.com}Field"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "FieldComponent", propOrder = {
"field"
})
public class FieldComponent
extends DescribeLayoutComponent
{
@XmlElement(required = true)
protected Field field;
/**
* Gets the value of the field property.
*
* @return
* possible object is
* {@link Field }
*
*/
public Field getField() {
return field;
}
/**
* Sets the value of the field property.
*
* @param value
* allowed object is
* {@link Field }
*
*/
public void setField(Field value) {
this.field = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy