31 lines
793 B
Java
31 lines
793 B
Java
package com.sforce.soap.partner;
|
|
|
|
/**
|
|
* This is a generated class for the SObject Enterprise API.
|
|
* Do not edit this file, as your changes will be lost.
|
|
*/
|
|
public interface ISearchLayoutFieldsDisplayed {
|
|
|
|
/**
|
|
* element : applicable of type {http://www.w3.org/2001/XMLSchema}boolean
|
|
* java type: boolean
|
|
*/
|
|
|
|
public boolean getApplicable();
|
|
|
|
public boolean isApplicable();
|
|
|
|
public void setApplicable(boolean applicable);
|
|
|
|
/**
|
|
* element : fields of type {urn:partner.soap.sforce.com}SearchLayoutField
|
|
* java type: com.sforce.soap.partner.SearchLayoutField[]
|
|
*/
|
|
|
|
public com.sforce.soap.partner.ISearchLayoutField[] getFields();
|
|
|
|
public void setFields(com.sforce.soap.partner.ISearchLayoutField[] fields);
|
|
|
|
|
|
}
|