datai/docs/reference-code/com/sforce/soap/tooling/sobject/PromptVersion.java

2038 lines
104 KiB
Java

package com.sforce.soap.tooling.sobject;
/**
* This is a generated class for the SObject Enterprise API.
* Do not edit this file, as your changes will be lost.
*/
public class PromptVersion extends com.sforce.soap.tooling.sobject.SObject {
/**
* Constructor
*/
public PromptVersion() {}
/* Cache the typeInfo instead of declaring static fields throughout*/
private transient java.util.Map<String, com.sforce.ws.bind.TypeInfo> typeInfoCache = new java.util.HashMap<String, com.sforce.ws.bind.TypeInfo>();
private com.sforce.ws.bind.TypeInfo _lookupTypeInfo(String fieldName, String namespace, String name, String typeNS, String type, int minOcc, int maxOcc, boolean elementForm) {
com.sforce.ws.bind.TypeInfo typeInfo = typeInfoCache.get(fieldName);
if (typeInfo == null) {
typeInfo = new com.sforce.ws.bind.TypeInfo(namespace, name, typeNS, type, minOcc, maxOcc, elementForm);
typeInfoCache.put(fieldName, typeInfo);
}
return typeInfo;
}
/**
* element : ActionButtonLabel of type {http://www.w3.org/2001/XMLSchema}string
* java type: java.lang.String
*/
private boolean ActionButtonLabel__is_set = false;
private java.lang.String ActionButtonLabel;
public java.lang.String getActionButtonLabel() {
return ActionButtonLabel;
}
public void setActionButtonLabel(java.lang.String ActionButtonLabel) {
this.ActionButtonLabel = ActionButtonLabel;
ActionButtonLabel__is_set = true;
}
protected void setActionButtonLabel(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__in.peekTag();
if (__typeMapper.isElement(__in, _lookupTypeInfo("ActionButtonLabel", "urn:sobject.tooling.soap.sforce.com","ActionButtonLabel","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
setActionButtonLabel(__typeMapper.readString(__in, _lookupTypeInfo("ActionButtonLabel", "urn:sobject.tooling.soap.sforce.com","ActionButtonLabel","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
}
}
private void writeFieldActionButtonLabel(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
__typeMapper.writeObject(__out, _lookupTypeInfo("ActionButtonLabel", "urn:sobject.tooling.soap.sforce.com","ActionButtonLabel","http://www.w3.org/2001/XMLSchema","string",0,1,true), ActionButtonLabel, ActionButtonLabel__is_set);
}
/**
* element : ActionButtonLink of type {http://www.w3.org/2001/XMLSchema}string
* java type: java.lang.String
*/
private boolean ActionButtonLink__is_set = false;
private java.lang.String ActionButtonLink;
public java.lang.String getActionButtonLink() {
return ActionButtonLink;
}
public void setActionButtonLink(java.lang.String ActionButtonLink) {
this.ActionButtonLink = ActionButtonLink;
ActionButtonLink__is_set = true;
}
protected void setActionButtonLink(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__in.peekTag();
if (__typeMapper.isElement(__in, _lookupTypeInfo("ActionButtonLink", "urn:sobject.tooling.soap.sforce.com","ActionButtonLink","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
setActionButtonLink(__typeMapper.readString(__in, _lookupTypeInfo("ActionButtonLink", "urn:sobject.tooling.soap.sforce.com","ActionButtonLink","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
}
}
private void writeFieldActionButtonLink(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
__typeMapper.writeObject(__out, _lookupTypeInfo("ActionButtonLink", "urn:sobject.tooling.soap.sforce.com","ActionButtonLink","http://www.w3.org/2001/XMLSchema","string",0,1,true), ActionButtonLink, ActionButtonLink__is_set);
}
/**
* element : Body of type {http://www.w3.org/2001/XMLSchema}string
* java type: java.lang.String
*/
private boolean Body__is_set = false;
private java.lang.String Body;
public java.lang.String getBody() {
return Body;
}
public void setBody(java.lang.String Body) {
this.Body = Body;
Body__is_set = true;
}
protected void setBody(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__in.peekTag();
if (__typeMapper.isElement(__in, _lookupTypeInfo("Body", "urn:sobject.tooling.soap.sforce.com","Body","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
setBody(__typeMapper.readString(__in, _lookupTypeInfo("Body", "urn:sobject.tooling.soap.sforce.com","Body","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
}
}
private void writeFieldBody(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
__typeMapper.writeObject(__out, _lookupTypeInfo("Body", "urn:sobject.tooling.soap.sforce.com","Body","http://www.w3.org/2001/XMLSchema","string",0,1,true), Body, Body__is_set);
}
/**
* element : CreatedBy of type {urn:sobject.tooling.soap.sforce.com}User
* java type: com.sforce.soap.tooling.sobject.User
*/
private boolean CreatedBy__is_set = false;
private com.sforce.soap.tooling.sobject.User CreatedBy;
public com.sforce.soap.tooling.sobject.User getCreatedBy() {
return CreatedBy;
}
public void setCreatedBy(com.sforce.soap.tooling.sobject.User CreatedBy) {
this.CreatedBy = CreatedBy;
CreatedBy__is_set = true;
}
protected void setCreatedBy(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__in.peekTag();
if (__typeMapper.isElement(__in, _lookupTypeInfo("CreatedBy", "urn:sobject.tooling.soap.sforce.com","CreatedBy","urn:sobject.tooling.soap.sforce.com","User",0,1,true))) {
setCreatedBy((com.sforce.soap.tooling.sobject.User)__typeMapper.readObject(__in, _lookupTypeInfo("CreatedBy", "urn:sobject.tooling.soap.sforce.com","CreatedBy","urn:sobject.tooling.soap.sforce.com","User",0,1,true), com.sforce.soap.tooling.sobject.User.class));
}
}
private void writeFieldCreatedBy(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
__typeMapper.writeObject(__out, _lookupTypeInfo("CreatedBy", "urn:sobject.tooling.soap.sforce.com","CreatedBy","urn:sobject.tooling.soap.sforce.com","User",0,1,true), CreatedBy, CreatedBy__is_set);
}
/**
* element : CreatedById of type {urn:tooling.soap.sforce.com}ID
* java type: java.lang.String
*/
private boolean CreatedById__is_set = false;
private java.lang.String CreatedById;
public java.lang.String getCreatedById() {
return CreatedById;
}
public void setCreatedById(java.lang.String CreatedById) {
this.CreatedById = CreatedById;
CreatedById__is_set = true;
}
protected void setCreatedById(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__in.peekTag();
if (__typeMapper.isElement(__in, _lookupTypeInfo("CreatedById", "urn:sobject.tooling.soap.sforce.com","CreatedById","urn:tooling.soap.sforce.com","ID",0,1,true))) {
setCreatedById(__typeMapper.readString(__in, _lookupTypeInfo("CreatedById", "urn:sobject.tooling.soap.sforce.com","CreatedById","urn:tooling.soap.sforce.com","ID",0,1,true), java.lang.String.class));
}
}
private void writeFieldCreatedById(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
__typeMapper.writeObject(__out, _lookupTypeInfo("CreatedById", "urn:sobject.tooling.soap.sforce.com","CreatedById","urn:tooling.soap.sforce.com","ID",0,1,true), CreatedById, CreatedById__is_set);
}
/**
* element : CreatedDate of type {http://www.w3.org/2001/XMLSchema}dateTime
* java type: java.util.Calendar
*/
private boolean CreatedDate__is_set = false;
private java.util.Calendar CreatedDate;
public java.util.Calendar getCreatedDate() {
return CreatedDate;
}
public void setCreatedDate(java.util.Calendar CreatedDate) {
this.CreatedDate = CreatedDate;
CreatedDate__is_set = true;
}
protected void setCreatedDate(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__in.peekTag();
if (__typeMapper.isElement(__in, _lookupTypeInfo("CreatedDate", "urn:sobject.tooling.soap.sforce.com","CreatedDate","http://www.w3.org/2001/XMLSchema","dateTime",0,1,true))) {
setCreatedDate((java.util.Calendar)__typeMapper.readObject(__in, _lookupTypeInfo("CreatedDate", "urn:sobject.tooling.soap.sforce.com","CreatedDate","http://www.w3.org/2001/XMLSchema","dateTime",0,1,true), java.util.Calendar.class));
}
}
private void writeFieldCreatedDate(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
__typeMapper.writeObject(__out, _lookupTypeInfo("CreatedDate", "urn:sobject.tooling.soap.sforce.com","CreatedDate","http://www.w3.org/2001/XMLSchema","dateTime",0,1,true), CreatedDate, CreatedDate__is_set);
}
/**
* element : CustomApplication of type {urn:sobject.tooling.soap.sforce.com}CustomApplication
* java type: com.sforce.soap.tooling.sobject.CustomApplication
*/
private boolean CustomApplication__is_set = false;
private com.sforce.soap.tooling.sobject.CustomApplication CustomApplication;
public com.sforce.soap.tooling.sobject.CustomApplication getCustomApplication() {
return CustomApplication;
}
public void setCustomApplication(com.sforce.soap.tooling.sobject.CustomApplication CustomApplication) {
this.CustomApplication = CustomApplication;
CustomApplication__is_set = true;
}
protected void setCustomApplication(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__in.peekTag();
if (__typeMapper.isElement(__in, _lookupTypeInfo("CustomApplication", "urn:sobject.tooling.soap.sforce.com","CustomApplication","urn:sobject.tooling.soap.sforce.com","CustomApplication",0,1,true))) {
setCustomApplication((com.sforce.soap.tooling.sobject.CustomApplication)__typeMapper.readObject(__in, _lookupTypeInfo("CustomApplication", "urn:sobject.tooling.soap.sforce.com","CustomApplication","urn:sobject.tooling.soap.sforce.com","CustomApplication",0,1,true), com.sforce.soap.tooling.sobject.CustomApplication.class));
}
}
private void writeFieldCustomApplication(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
__typeMapper.writeObject(__out, _lookupTypeInfo("CustomApplication", "urn:sobject.tooling.soap.sforce.com","CustomApplication","urn:sobject.tooling.soap.sforce.com","CustomApplication",0,1,true), CustomApplication, CustomApplication__is_set);
}
/**
* element : CustomApplicationId of type {urn:tooling.soap.sforce.com}ID
* java type: java.lang.String
*/
private boolean CustomApplicationId__is_set = false;
private java.lang.String CustomApplicationId;
public java.lang.String getCustomApplicationId() {
return CustomApplicationId;
}
public void setCustomApplicationId(java.lang.String CustomApplicationId) {
this.CustomApplicationId = CustomApplicationId;
CustomApplicationId__is_set = true;
}
protected void setCustomApplicationId(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__in.peekTag();
if (__typeMapper.isElement(__in, _lookupTypeInfo("CustomApplicationId", "urn:sobject.tooling.soap.sforce.com","CustomApplicationId","urn:tooling.soap.sforce.com","ID",0,1,true))) {
setCustomApplicationId(__typeMapper.readString(__in, _lookupTypeInfo("CustomApplicationId", "urn:sobject.tooling.soap.sforce.com","CustomApplicationId","urn:tooling.soap.sforce.com","ID",0,1,true), java.lang.String.class));
}
}
private void writeFieldCustomApplicationId(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
__typeMapper.writeObject(__out, _lookupTypeInfo("CustomApplicationId", "urn:sobject.tooling.soap.sforce.com","CustomApplicationId","urn:tooling.soap.sforce.com","ID",0,1,true), CustomApplicationId, CustomApplicationId__is_set);
}
/**
* element : DelayDays of type {http://www.w3.org/2001/XMLSchema}int
* java type: java.lang.Integer
*/
private boolean DelayDays__is_set = false;
private java.lang.Integer DelayDays;
public java.lang.Integer getDelayDays() {
return DelayDays;
}
public void setDelayDays(java.lang.Integer DelayDays) {
this.DelayDays = DelayDays;
DelayDays__is_set = true;
}
protected void setDelayDays(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__in.peekTag();
if (__typeMapper.isElement(__in, _lookupTypeInfo("DelayDays", "urn:sobject.tooling.soap.sforce.com","DelayDays","http://www.w3.org/2001/XMLSchema","int",0,1,true))) {
setDelayDays((java.lang.Integer)__typeMapper.readObject(__in, _lookupTypeInfo("DelayDays", "urn:sobject.tooling.soap.sforce.com","DelayDays","http://www.w3.org/2001/XMLSchema","int",0,1,true), java.lang.Integer.class));
}
}
private void writeFieldDelayDays(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
__typeMapper.writeObject(__out, _lookupTypeInfo("DelayDays", "urn:sobject.tooling.soap.sforce.com","DelayDays","http://www.w3.org/2001/XMLSchema","int",0,1,true), DelayDays, DelayDays__is_set);
}
/**
* element : Description of type {http://www.w3.org/2001/XMLSchema}string
* java type: java.lang.String
*/
private boolean Description__is_set = false;
private java.lang.String Description;
public java.lang.String getDescription() {
return Description;
}
public void setDescription(java.lang.String Description) {
this.Description = Description;
Description__is_set = true;
}
protected void setDescription(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__in.peekTag();
if (__typeMapper.isElement(__in, _lookupTypeInfo("Description", "urn:sobject.tooling.soap.sforce.com","Description","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
setDescription(__typeMapper.readString(__in, _lookupTypeInfo("Description", "urn:sobject.tooling.soap.sforce.com","Description","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
}
}
private void writeFieldDescription(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
__typeMapper.writeObject(__out, _lookupTypeInfo("Description", "urn:sobject.tooling.soap.sforce.com","Description","http://www.w3.org/2001/XMLSchema","string",0,1,true), Description, Description__is_set);
}
/**
* element : DismissButtonLabel of type {http://www.w3.org/2001/XMLSchema}string
* java type: java.lang.String
*/
private boolean DismissButtonLabel__is_set = false;
private java.lang.String DismissButtonLabel;
public java.lang.String getDismissButtonLabel() {
return DismissButtonLabel;
}
public void setDismissButtonLabel(java.lang.String DismissButtonLabel) {
this.DismissButtonLabel = DismissButtonLabel;
DismissButtonLabel__is_set = true;
}
protected void setDismissButtonLabel(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__in.peekTag();
if (__typeMapper.isElement(__in, _lookupTypeInfo("DismissButtonLabel", "urn:sobject.tooling.soap.sforce.com","DismissButtonLabel","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
setDismissButtonLabel(__typeMapper.readString(__in, _lookupTypeInfo("DismissButtonLabel", "urn:sobject.tooling.soap.sforce.com","DismissButtonLabel","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
}
}
private void writeFieldDismissButtonLabel(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
__typeMapper.writeObject(__out, _lookupTypeInfo("DismissButtonLabel", "urn:sobject.tooling.soap.sforce.com","DismissButtonLabel","http://www.w3.org/2001/XMLSchema","string",0,1,true), DismissButtonLabel, DismissButtonLabel__is_set);
}
/**
* element : DisplayPosition of type {http://www.w3.org/2001/XMLSchema}string
* java type: java.lang.String
*/
private boolean DisplayPosition__is_set = false;
private java.lang.String DisplayPosition;
public java.lang.String getDisplayPosition() {
return DisplayPosition;
}
public void setDisplayPosition(java.lang.String DisplayPosition) {
this.DisplayPosition = DisplayPosition;
DisplayPosition__is_set = true;
}
protected void setDisplayPosition(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__in.peekTag();
if (__typeMapper.isElement(__in, _lookupTypeInfo("DisplayPosition", "urn:sobject.tooling.soap.sforce.com","DisplayPosition","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
setDisplayPosition(__typeMapper.readString(__in, _lookupTypeInfo("DisplayPosition", "urn:sobject.tooling.soap.sforce.com","DisplayPosition","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
}
}
private void writeFieldDisplayPosition(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
__typeMapper.writeObject(__out, _lookupTypeInfo("DisplayPosition", "urn:sobject.tooling.soap.sforce.com","DisplayPosition","http://www.w3.org/2001/XMLSchema","string",0,1,true), DisplayPosition, DisplayPosition__is_set);
}
/**
* element : DisplayType of type {http://www.w3.org/2001/XMLSchema}string
* java type: java.lang.String
*/
private boolean DisplayType__is_set = false;
private java.lang.String DisplayType;
public java.lang.String getDisplayType() {
return DisplayType;
}
public void setDisplayType(java.lang.String DisplayType) {
this.DisplayType = DisplayType;
DisplayType__is_set = true;
}
protected void setDisplayType(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__in.peekTag();
if (__typeMapper.isElement(__in, _lookupTypeInfo("DisplayType", "urn:sobject.tooling.soap.sforce.com","DisplayType","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
setDisplayType(__typeMapper.readString(__in, _lookupTypeInfo("DisplayType", "urn:sobject.tooling.soap.sforce.com","DisplayType","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
}
}
private void writeFieldDisplayType(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
__typeMapper.writeObject(__out, _lookupTypeInfo("DisplayType", "urn:sobject.tooling.soap.sforce.com","DisplayType","http://www.w3.org/2001/XMLSchema","string",0,1,true), DisplayType, DisplayType__is_set);
}
/**
* element : ElementRelativePosition of type {http://www.w3.org/2001/XMLSchema}string
* java type: java.lang.String
*/
private boolean ElementRelativePosition__is_set = false;
private java.lang.String ElementRelativePosition;
public java.lang.String getElementRelativePosition() {
return ElementRelativePosition;
}
public void setElementRelativePosition(java.lang.String ElementRelativePosition) {
this.ElementRelativePosition = ElementRelativePosition;
ElementRelativePosition__is_set = true;
}
protected void setElementRelativePosition(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__in.peekTag();
if (__typeMapper.isElement(__in, _lookupTypeInfo("ElementRelativePosition", "urn:sobject.tooling.soap.sforce.com","ElementRelativePosition","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
setElementRelativePosition(__typeMapper.readString(__in, _lookupTypeInfo("ElementRelativePosition", "urn:sobject.tooling.soap.sforce.com","ElementRelativePosition","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
}
}
private void writeFieldElementRelativePosition(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
__typeMapper.writeObject(__out, _lookupTypeInfo("ElementRelativePosition", "urn:sobject.tooling.soap.sforce.com","ElementRelativePosition","http://www.w3.org/2001/XMLSchema","string",0,1,true), ElementRelativePosition, ElementRelativePosition__is_set);
}
/**
* element : EndDate of type {http://www.w3.org/2001/XMLSchema}date
* java type: java.util.Calendar
*/
private boolean EndDate__is_set = false;
private java.util.Calendar EndDate;
public java.util.Calendar getEndDate() {
return EndDate;
}
public void setEndDate(java.util.Calendar EndDate) {
this.EndDate = EndDate;
EndDate__is_set = true;
}
protected void setEndDate(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__in.peekTag();
if (__typeMapper.isElement(__in, _lookupTypeInfo("EndDate", "urn:sobject.tooling.soap.sforce.com","EndDate","http://www.w3.org/2001/XMLSchema","date",0,1,true))) {
setEndDate((java.util.Calendar)__typeMapper.readObject(__in, _lookupTypeInfo("EndDate", "urn:sobject.tooling.soap.sforce.com","EndDate","http://www.w3.org/2001/XMLSchema","date",0,1,true), java.util.Calendar.class));
}
}
private void writeFieldEndDate(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
__typeMapper.writeObject(__out, _lookupTypeInfo("EndDate", "urn:sobject.tooling.soap.sforce.com","EndDate","http://www.w3.org/2001/XMLSchema","date",0,1,true), EndDate, EndDate__is_set);
}
/**
* element : Experience of type {http://www.w3.org/2001/XMLSchema}string
* java type: java.lang.String
*/
private boolean Experience__is_set = false;
private java.lang.String Experience;
public java.lang.String getExperience() {
return Experience;
}
public void setExperience(java.lang.String Experience) {
this.Experience = Experience;
Experience__is_set = true;
}
protected void setExperience(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__in.peekTag();
if (__typeMapper.isElement(__in, _lookupTypeInfo("Experience", "urn:sobject.tooling.soap.sforce.com","Experience","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
setExperience(__typeMapper.readString(__in, _lookupTypeInfo("Experience", "urn:sobject.tooling.soap.sforce.com","Experience","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
}
}
private void writeFieldExperience(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
__typeMapper.writeObject(__out, _lookupTypeInfo("Experience", "urn:sobject.tooling.soap.sforce.com","Experience","http://www.w3.org/2001/XMLSchema","string",0,1,true), Experience, Experience__is_set);
}
/**
* element : ExperienceContext of type {urn:sobject.tooling.soap.sforce.com}sObject
* java type: com.sforce.soap.tooling.sobject.SObject
*/
private boolean ExperienceContext__is_set = false;
private com.sforce.soap.tooling.sobject.SObject ExperienceContext;
public com.sforce.soap.tooling.sobject.SObject getExperienceContext() {
return ExperienceContext;
}
public void setExperienceContext(com.sforce.soap.tooling.sobject.SObject ExperienceContext) {
this.ExperienceContext = ExperienceContext;
ExperienceContext__is_set = true;
}
protected void setExperienceContext(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__in.peekTag();
if (__typeMapper.isElement(__in, _lookupTypeInfo("ExperienceContext", "urn:sobject.tooling.soap.sforce.com","ExperienceContext","urn:sobject.tooling.soap.sforce.com","sObject",0,1,true))) {
setExperienceContext((com.sforce.soap.tooling.sobject.SObject)__typeMapper.readObject(__in, _lookupTypeInfo("ExperienceContext", "urn:sobject.tooling.soap.sforce.com","ExperienceContext","urn:sobject.tooling.soap.sforce.com","sObject",0,1,true), com.sforce.soap.tooling.sobject.SObject.class));
}
}
private void writeFieldExperienceContext(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
__typeMapper.writeObject(__out, _lookupTypeInfo("ExperienceContext", "urn:sobject.tooling.soap.sforce.com","ExperienceContext","urn:sobject.tooling.soap.sforce.com","sObject",0,1,true), ExperienceContext, ExperienceContext__is_set);
}
/**
* element : ExperienceContextId of type {urn:tooling.soap.sforce.com}ID
* java type: java.lang.String
*/
private boolean ExperienceContextId__is_set = false;
private java.lang.String ExperienceContextId;
public java.lang.String getExperienceContextId() {
return ExperienceContextId;
}
public void setExperienceContextId(java.lang.String ExperienceContextId) {
this.ExperienceContextId = ExperienceContextId;
ExperienceContextId__is_set = true;
}
protected void setExperienceContextId(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__in.peekTag();
if (__typeMapper.isElement(__in, _lookupTypeInfo("ExperienceContextId", "urn:sobject.tooling.soap.sforce.com","ExperienceContextId","urn:tooling.soap.sforce.com","ID",0,1,true))) {
setExperienceContextId(__typeMapper.readString(__in, _lookupTypeInfo("ExperienceContextId", "urn:sobject.tooling.soap.sforce.com","ExperienceContextId","urn:tooling.soap.sforce.com","ID",0,1,true), java.lang.String.class));
}
}
private void writeFieldExperienceContextId(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
__typeMapper.writeObject(__out, _lookupTypeInfo("ExperienceContextId", "urn:sobject.tooling.soap.sforce.com","ExperienceContextId","urn:tooling.soap.sforce.com","ID",0,1,true), ExperienceContextId, ExperienceContextId__is_set);
}
/**
* element : Header of type {http://www.w3.org/2001/XMLSchema}string
* java type: java.lang.String
*/
private boolean Header__is_set = false;
private java.lang.String Header;
public java.lang.String getHeader() {
return Header;
}
public void setHeader(java.lang.String Header) {
this.Header = Header;
Header__is_set = true;
}
protected void setHeader(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__in.peekTag();
if (__typeMapper.isElement(__in, _lookupTypeInfo("Header", "urn:sobject.tooling.soap.sforce.com","Header","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
setHeader(__typeMapper.readString(__in, _lookupTypeInfo("Header", "urn:sobject.tooling.soap.sforce.com","Header","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
}
}
private void writeFieldHeader(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
__typeMapper.writeObject(__out, _lookupTypeInfo("Header", "urn:sobject.tooling.soap.sforce.com","Header","http://www.w3.org/2001/XMLSchema","string",0,1,true), Header, Header__is_set);
}
/**
* element : ImageAltText of type {http://www.w3.org/2001/XMLSchema}string
* java type: java.lang.String
*/
private boolean ImageAltText__is_set = false;
private java.lang.String ImageAltText;
public java.lang.String getImageAltText() {
return ImageAltText;
}
public void setImageAltText(java.lang.String ImageAltText) {
this.ImageAltText = ImageAltText;
ImageAltText__is_set = true;
}
protected void setImageAltText(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__in.peekTag();
if (__typeMapper.isElement(__in, _lookupTypeInfo("ImageAltText", "urn:sobject.tooling.soap.sforce.com","ImageAltText","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
setImageAltText(__typeMapper.readString(__in, _lookupTypeInfo("ImageAltText", "urn:sobject.tooling.soap.sforce.com","ImageAltText","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
}
}
private void writeFieldImageAltText(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
__typeMapper.writeObject(__out, _lookupTypeInfo("ImageAltText", "urn:sobject.tooling.soap.sforce.com","ImageAltText","http://www.w3.org/2001/XMLSchema","string",0,1,true), ImageAltText, ImageAltText__is_set);
}
/**
* element : ImageId of type {urn:tooling.soap.sforce.com}ID
* java type: java.lang.String
*/
private boolean ImageId__is_set = false;
private java.lang.String ImageId;
public java.lang.String getImageId() {
return ImageId;
}
public void setImageId(java.lang.String ImageId) {
this.ImageId = ImageId;
ImageId__is_set = true;
}
protected void setImageId(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__in.peekTag();
if (__typeMapper.isElement(__in, _lookupTypeInfo("ImageId", "urn:sobject.tooling.soap.sforce.com","ImageId","urn:tooling.soap.sforce.com","ID",0,1,true))) {
setImageId(__typeMapper.readString(__in, _lookupTypeInfo("ImageId", "urn:sobject.tooling.soap.sforce.com","ImageId","urn:tooling.soap.sforce.com","ID",0,1,true), java.lang.String.class));
}
}
private void writeFieldImageId(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
__typeMapper.writeObject(__out, _lookupTypeInfo("ImageId", "urn:sobject.tooling.soap.sforce.com","ImageId","urn:tooling.soap.sforce.com","ID",0,1,true), ImageId, ImageId__is_set);
}
/**
* element : ImageLink of type {http://www.w3.org/2001/XMLSchema}string
* java type: java.lang.String
*/
private boolean ImageLink__is_set = false;
private java.lang.String ImageLink;
public java.lang.String getImageLink() {
return ImageLink;
}
public void setImageLink(java.lang.String ImageLink) {
this.ImageLink = ImageLink;
ImageLink__is_set = true;
}
protected void setImageLink(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__in.peekTag();
if (__typeMapper.isElement(__in, _lookupTypeInfo("ImageLink", "urn:sobject.tooling.soap.sforce.com","ImageLink","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
setImageLink(__typeMapper.readString(__in, _lookupTypeInfo("ImageLink", "urn:sobject.tooling.soap.sforce.com","ImageLink","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
}
}
private void writeFieldImageLink(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
__typeMapper.writeObject(__out, _lookupTypeInfo("ImageLink", "urn:sobject.tooling.soap.sforce.com","ImageLink","http://www.w3.org/2001/XMLSchema","string",0,1,true), ImageLink, ImageLink__is_set);
}
/**
* element : ImageLocation of type {http://www.w3.org/2001/XMLSchema}string
* java type: java.lang.String
*/
private boolean ImageLocation__is_set = false;
private java.lang.String ImageLocation;
public java.lang.String getImageLocation() {
return ImageLocation;
}
public void setImageLocation(java.lang.String ImageLocation) {
this.ImageLocation = ImageLocation;
ImageLocation__is_set = true;
}
protected void setImageLocation(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__in.peekTag();
if (__typeMapper.isElement(__in, _lookupTypeInfo("ImageLocation", "urn:sobject.tooling.soap.sforce.com","ImageLocation","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
setImageLocation(__typeMapper.readString(__in, _lookupTypeInfo("ImageLocation", "urn:sobject.tooling.soap.sforce.com","ImageLocation","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
}
}
private void writeFieldImageLocation(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
__typeMapper.writeObject(__out, _lookupTypeInfo("ImageLocation", "urn:sobject.tooling.soap.sforce.com","ImageLocation","http://www.w3.org/2001/XMLSchema","string",0,1,true), ImageLocation, ImageLocation__is_set);
}
/**
* element : IndexWithIsPublished of type {http://www.w3.org/2001/XMLSchema}string
* java type: java.lang.String
*/
private boolean IndexWithIsPublished__is_set = false;
private java.lang.String IndexWithIsPublished;
public java.lang.String getIndexWithIsPublished() {
return IndexWithIsPublished;
}
public void setIndexWithIsPublished(java.lang.String IndexWithIsPublished) {
this.IndexWithIsPublished = IndexWithIsPublished;
IndexWithIsPublished__is_set = true;
}
protected void setIndexWithIsPublished(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__in.peekTag();
if (__typeMapper.isElement(__in, _lookupTypeInfo("IndexWithIsPublished", "urn:sobject.tooling.soap.sforce.com","IndexWithIsPublished","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
setIndexWithIsPublished(__typeMapper.readString(__in, _lookupTypeInfo("IndexWithIsPublished", "urn:sobject.tooling.soap.sforce.com","IndexWithIsPublished","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
}
}
private void writeFieldIndexWithIsPublished(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
__typeMapper.writeObject(__out, _lookupTypeInfo("IndexWithIsPublished", "urn:sobject.tooling.soap.sforce.com","IndexWithIsPublished","http://www.w3.org/2001/XMLSchema","string",0,1,true), IndexWithIsPublished, IndexWithIsPublished__is_set);
}
/**
* element : IndexWithoutIsPublished of type {http://www.w3.org/2001/XMLSchema}string
* java type: java.lang.String
*/
private boolean IndexWithoutIsPublished__is_set = false;
private java.lang.String IndexWithoutIsPublished;
public java.lang.String getIndexWithoutIsPublished() {
return IndexWithoutIsPublished;
}
public void setIndexWithoutIsPublished(java.lang.String IndexWithoutIsPublished) {
this.IndexWithoutIsPublished = IndexWithoutIsPublished;
IndexWithoutIsPublished__is_set = true;
}
protected void setIndexWithoutIsPublished(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__in.peekTag();
if (__typeMapper.isElement(__in, _lookupTypeInfo("IndexWithoutIsPublished", "urn:sobject.tooling.soap.sforce.com","IndexWithoutIsPublished","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
setIndexWithoutIsPublished(__typeMapper.readString(__in, _lookupTypeInfo("IndexWithoutIsPublished", "urn:sobject.tooling.soap.sforce.com","IndexWithoutIsPublished","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
}
}
private void writeFieldIndexWithoutIsPublished(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
__typeMapper.writeObject(__out, _lookupTypeInfo("IndexWithoutIsPublished", "urn:sobject.tooling.soap.sforce.com","IndexWithoutIsPublished","http://www.w3.org/2001/XMLSchema","string",0,1,true), IndexWithoutIsPublished, IndexWithoutIsPublished__is_set);
}
/**
* element : IsDeleted of type {http://www.w3.org/2001/XMLSchema}boolean
* java type: java.lang.Boolean
*/
private boolean IsDeleted__is_set = false;
private java.lang.Boolean IsDeleted;
public java.lang.Boolean getIsDeleted() {
return IsDeleted;
}
public void setIsDeleted(java.lang.Boolean IsDeleted) {
this.IsDeleted = IsDeleted;
IsDeleted__is_set = true;
}
protected void setIsDeleted(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__in.peekTag();
if (__typeMapper.isElement(__in, _lookupTypeInfo("IsDeleted", "urn:sobject.tooling.soap.sforce.com","IsDeleted","http://www.w3.org/2001/XMLSchema","boolean",0,1,true))) {
setIsDeleted((java.lang.Boolean)__typeMapper.readObject(__in, _lookupTypeInfo("IsDeleted", "urn:sobject.tooling.soap.sforce.com","IsDeleted","http://www.w3.org/2001/XMLSchema","boolean",0,1,true), java.lang.Boolean.class));
}
}
private void writeFieldIsDeleted(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
__typeMapper.writeObject(__out, _lookupTypeInfo("IsDeleted", "urn:sobject.tooling.soap.sforce.com","IsDeleted","http://www.w3.org/2001/XMLSchema","boolean",0,1,true), IsDeleted, IsDeleted__is_set);
}
/**
* element : IsPublished of type {http://www.w3.org/2001/XMLSchema}boolean
* java type: java.lang.Boolean
*/
private boolean IsPublished__is_set = false;
private java.lang.Boolean IsPublished;
public java.lang.Boolean getIsPublished() {
return IsPublished;
}
public void setIsPublished(java.lang.Boolean IsPublished) {
this.IsPublished = IsPublished;
IsPublished__is_set = true;
}
protected void setIsPublished(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__in.peekTag();
if (__typeMapper.isElement(__in, _lookupTypeInfo("IsPublished", "urn:sobject.tooling.soap.sforce.com","IsPublished","http://www.w3.org/2001/XMLSchema","boolean",0,1,true))) {
setIsPublished((java.lang.Boolean)__typeMapper.readObject(__in, _lookupTypeInfo("IsPublished", "urn:sobject.tooling.soap.sforce.com","IsPublished","http://www.w3.org/2001/XMLSchema","boolean",0,1,true), java.lang.Boolean.class));
}
}
private void writeFieldIsPublished(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
__typeMapper.writeObject(__out, _lookupTypeInfo("IsPublished", "urn:sobject.tooling.soap.sforce.com","IsPublished","http://www.w3.org/2001/XMLSchema","boolean",0,1,true), IsPublished, IsPublished__is_set);
}
/**
* element : LastModifiedBy of type {urn:sobject.tooling.soap.sforce.com}User
* java type: com.sforce.soap.tooling.sobject.User
*/
private boolean LastModifiedBy__is_set = false;
private com.sforce.soap.tooling.sobject.User LastModifiedBy;
public com.sforce.soap.tooling.sobject.User getLastModifiedBy() {
return LastModifiedBy;
}
public void setLastModifiedBy(com.sforce.soap.tooling.sobject.User LastModifiedBy) {
this.LastModifiedBy = LastModifiedBy;
LastModifiedBy__is_set = true;
}
protected void setLastModifiedBy(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__in.peekTag();
if (__typeMapper.isElement(__in, _lookupTypeInfo("LastModifiedBy", "urn:sobject.tooling.soap.sforce.com","LastModifiedBy","urn:sobject.tooling.soap.sforce.com","User",0,1,true))) {
setLastModifiedBy((com.sforce.soap.tooling.sobject.User)__typeMapper.readObject(__in, _lookupTypeInfo("LastModifiedBy", "urn:sobject.tooling.soap.sforce.com","LastModifiedBy","urn:sobject.tooling.soap.sforce.com","User",0,1,true), com.sforce.soap.tooling.sobject.User.class));
}
}
private void writeFieldLastModifiedBy(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
__typeMapper.writeObject(__out, _lookupTypeInfo("LastModifiedBy", "urn:sobject.tooling.soap.sforce.com","LastModifiedBy","urn:sobject.tooling.soap.sforce.com","User",0,1,true), LastModifiedBy, LastModifiedBy__is_set);
}
/**
* element : LastModifiedById of type {urn:tooling.soap.sforce.com}ID
* java type: java.lang.String
*/
private boolean LastModifiedById__is_set = false;
private java.lang.String LastModifiedById;
public java.lang.String getLastModifiedById() {
return LastModifiedById;
}
public void setLastModifiedById(java.lang.String LastModifiedById) {
this.LastModifiedById = LastModifiedById;
LastModifiedById__is_set = true;
}
protected void setLastModifiedById(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__in.peekTag();
if (__typeMapper.isElement(__in, _lookupTypeInfo("LastModifiedById", "urn:sobject.tooling.soap.sforce.com","LastModifiedById","urn:tooling.soap.sforce.com","ID",0,1,true))) {
setLastModifiedById(__typeMapper.readString(__in, _lookupTypeInfo("LastModifiedById", "urn:sobject.tooling.soap.sforce.com","LastModifiedById","urn:tooling.soap.sforce.com","ID",0,1,true), java.lang.String.class));
}
}
private void writeFieldLastModifiedById(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
__typeMapper.writeObject(__out, _lookupTypeInfo("LastModifiedById", "urn:sobject.tooling.soap.sforce.com","LastModifiedById","urn:tooling.soap.sforce.com","ID",0,1,true), LastModifiedById, LastModifiedById__is_set);
}
/**
* element : LastModifiedDate of type {http://www.w3.org/2001/XMLSchema}dateTime
* java type: java.util.Calendar
*/
private boolean LastModifiedDate__is_set = false;
private java.util.Calendar LastModifiedDate;
public java.util.Calendar getLastModifiedDate() {
return LastModifiedDate;
}
public void setLastModifiedDate(java.util.Calendar LastModifiedDate) {
this.LastModifiedDate = LastModifiedDate;
LastModifiedDate__is_set = true;
}
protected void setLastModifiedDate(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__in.peekTag();
if (__typeMapper.isElement(__in, _lookupTypeInfo("LastModifiedDate", "urn:sobject.tooling.soap.sforce.com","LastModifiedDate","http://www.w3.org/2001/XMLSchema","dateTime",0,1,true))) {
setLastModifiedDate((java.util.Calendar)__typeMapper.readObject(__in, _lookupTypeInfo("LastModifiedDate", "urn:sobject.tooling.soap.sforce.com","LastModifiedDate","http://www.w3.org/2001/XMLSchema","dateTime",0,1,true), java.util.Calendar.class));
}
}
private void writeFieldLastModifiedDate(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
__typeMapper.writeObject(__out, _lookupTypeInfo("LastModifiedDate", "urn:sobject.tooling.soap.sforce.com","LastModifiedDate","http://www.w3.org/2001/XMLSchema","dateTime",0,1,true), LastModifiedDate, LastModifiedDate__is_set);
}
/**
* element : ManageableState of type {http://www.w3.org/2001/XMLSchema}string
* java type: java.lang.String
*/
private boolean ManageableState__is_set = false;
private java.lang.String ManageableState;
public java.lang.String getManageableState() {
return ManageableState;
}
public void setManageableState(java.lang.String ManageableState) {
this.ManageableState = ManageableState;
ManageableState__is_set = true;
}
protected void setManageableState(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__in.peekTag();
if (__typeMapper.isElement(__in, _lookupTypeInfo("ManageableState", "urn:sobject.tooling.soap.sforce.com","ManageableState","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
setManageableState(__typeMapper.readString(__in, _lookupTypeInfo("ManageableState", "urn:sobject.tooling.soap.sforce.com","ManageableState","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
}
}
private void writeFieldManageableState(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
__typeMapper.writeObject(__out, _lookupTypeInfo("ManageableState", "urn:sobject.tooling.soap.sforce.com","ManageableState","http://www.w3.org/2001/XMLSchema","string",0,1,true), ManageableState, ManageableState__is_set);
}
/**
* element : MasterLabel of type {http://www.w3.org/2001/XMLSchema}string
* java type: java.lang.String
*/
private boolean MasterLabel__is_set = false;
private java.lang.String MasterLabel;
public java.lang.String getMasterLabel() {
return MasterLabel;
}
public void setMasterLabel(java.lang.String MasterLabel) {
this.MasterLabel = MasterLabel;
MasterLabel__is_set = true;
}
protected void setMasterLabel(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__in.peekTag();
if (__typeMapper.isElement(__in, _lookupTypeInfo("MasterLabel", "urn:sobject.tooling.soap.sforce.com","MasterLabel","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
setMasterLabel(__typeMapper.readString(__in, _lookupTypeInfo("MasterLabel", "urn:sobject.tooling.soap.sforce.com","MasterLabel","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
}
}
private void writeFieldMasterLabel(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
__typeMapper.writeObject(__out, _lookupTypeInfo("MasterLabel", "urn:sobject.tooling.soap.sforce.com","MasterLabel","http://www.w3.org/2001/XMLSchema","string",0,1,true), MasterLabel, MasterLabel__is_set);
}
/**
* element : Parent of type {urn:sobject.tooling.soap.sforce.com}Prompt
* java type: com.sforce.soap.tooling.sobject.Prompt
*/
private boolean Parent__is_set = false;
private com.sforce.soap.tooling.sobject.Prompt Parent;
public com.sforce.soap.tooling.sobject.Prompt getParent() {
return Parent;
}
public void setParent(com.sforce.soap.tooling.sobject.Prompt Parent) {
this.Parent = Parent;
Parent__is_set = true;
}
protected void setParent(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__in.peekTag();
if (__typeMapper.isElement(__in, _lookupTypeInfo("Parent", "urn:sobject.tooling.soap.sforce.com","Parent","urn:sobject.tooling.soap.sforce.com","Prompt",0,1,true))) {
setParent((com.sforce.soap.tooling.sobject.Prompt)__typeMapper.readObject(__in, _lookupTypeInfo("Parent", "urn:sobject.tooling.soap.sforce.com","Parent","urn:sobject.tooling.soap.sforce.com","Prompt",0,1,true), com.sforce.soap.tooling.sobject.Prompt.class));
}
}
private void writeFieldParent(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
__typeMapper.writeObject(__out, _lookupTypeInfo("Parent", "urn:sobject.tooling.soap.sforce.com","Parent","urn:sobject.tooling.soap.sforce.com","Prompt",0,1,true), Parent, Parent__is_set);
}
/**
* element : ParentId of type {urn:tooling.soap.sforce.com}ID
* java type: java.lang.String
*/
private boolean ParentId__is_set = false;
private java.lang.String ParentId;
public java.lang.String getParentId() {
return ParentId;
}
public void setParentId(java.lang.String ParentId) {
this.ParentId = ParentId;
ParentId__is_set = true;
}
protected void setParentId(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__in.peekTag();
if (__typeMapper.isElement(__in, _lookupTypeInfo("ParentId", "urn:sobject.tooling.soap.sforce.com","ParentId","urn:tooling.soap.sforce.com","ID",0,1,true))) {
setParentId(__typeMapper.readString(__in, _lookupTypeInfo("ParentId", "urn:sobject.tooling.soap.sforce.com","ParentId","urn:tooling.soap.sforce.com","ID",0,1,true), java.lang.String.class));
}
}
private void writeFieldParentId(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
__typeMapper.writeObject(__out, _lookupTypeInfo("ParentId", "urn:sobject.tooling.soap.sforce.com","ParentId","urn:tooling.soap.sforce.com","ID",0,1,true), ParentId, ParentId__is_set);
}
/**
* element : PublishedByUser of type {urn:sobject.tooling.soap.sforce.com}User
* java type: com.sforce.soap.tooling.sobject.User
*/
private boolean PublishedByUser__is_set = false;
private com.sforce.soap.tooling.sobject.User PublishedByUser;
public com.sforce.soap.tooling.sobject.User getPublishedByUser() {
return PublishedByUser;
}
public void setPublishedByUser(com.sforce.soap.tooling.sobject.User PublishedByUser) {
this.PublishedByUser = PublishedByUser;
PublishedByUser__is_set = true;
}
protected void setPublishedByUser(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__in.peekTag();
if (__typeMapper.isElement(__in, _lookupTypeInfo("PublishedByUser", "urn:sobject.tooling.soap.sforce.com","PublishedByUser","urn:sobject.tooling.soap.sforce.com","User",0,1,true))) {
setPublishedByUser((com.sforce.soap.tooling.sobject.User)__typeMapper.readObject(__in, _lookupTypeInfo("PublishedByUser", "urn:sobject.tooling.soap.sforce.com","PublishedByUser","urn:sobject.tooling.soap.sforce.com","User",0,1,true), com.sforce.soap.tooling.sobject.User.class));
}
}
private void writeFieldPublishedByUser(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
__typeMapper.writeObject(__out, _lookupTypeInfo("PublishedByUser", "urn:sobject.tooling.soap.sforce.com","PublishedByUser","urn:sobject.tooling.soap.sforce.com","User",0,1,true), PublishedByUser, PublishedByUser__is_set);
}
/**
* element : PublishedByUserId of type {urn:tooling.soap.sforce.com}ID
* java type: java.lang.String
*/
private boolean PublishedByUserId__is_set = false;
private java.lang.String PublishedByUserId;
public java.lang.String getPublishedByUserId() {
return PublishedByUserId;
}
public void setPublishedByUserId(java.lang.String PublishedByUserId) {
this.PublishedByUserId = PublishedByUserId;
PublishedByUserId__is_set = true;
}
protected void setPublishedByUserId(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__in.peekTag();
if (__typeMapper.isElement(__in, _lookupTypeInfo("PublishedByUserId", "urn:sobject.tooling.soap.sforce.com","PublishedByUserId","urn:tooling.soap.sforce.com","ID",0,1,true))) {
setPublishedByUserId(__typeMapper.readString(__in, _lookupTypeInfo("PublishedByUserId", "urn:sobject.tooling.soap.sforce.com","PublishedByUserId","urn:tooling.soap.sforce.com","ID",0,1,true), java.lang.String.class));
}
}
private void writeFieldPublishedByUserId(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
__typeMapper.writeObject(__out, _lookupTypeInfo("PublishedByUserId", "urn:sobject.tooling.soap.sforce.com","PublishedByUserId","urn:tooling.soap.sforce.com","ID",0,1,true), PublishedByUserId, PublishedByUserId__is_set);
}
/**
* element : PublishedDate of type {http://www.w3.org/2001/XMLSchema}date
* java type: java.util.Calendar
*/
private boolean PublishedDate__is_set = false;
private java.util.Calendar PublishedDate;
public java.util.Calendar getPublishedDate() {
return PublishedDate;
}
public void setPublishedDate(java.util.Calendar PublishedDate) {
this.PublishedDate = PublishedDate;
PublishedDate__is_set = true;
}
protected void setPublishedDate(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__in.peekTag();
if (__typeMapper.isElement(__in, _lookupTypeInfo("PublishedDate", "urn:sobject.tooling.soap.sforce.com","PublishedDate","http://www.w3.org/2001/XMLSchema","date",0,1,true))) {
setPublishedDate((java.util.Calendar)__typeMapper.readObject(__in, _lookupTypeInfo("PublishedDate", "urn:sobject.tooling.soap.sforce.com","PublishedDate","http://www.w3.org/2001/XMLSchema","date",0,1,true), java.util.Calendar.class));
}
}
private void writeFieldPublishedDate(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
__typeMapper.writeObject(__out, _lookupTypeInfo("PublishedDate", "urn:sobject.tooling.soap.sforce.com","PublishedDate","http://www.w3.org/2001/XMLSchema","date",0,1,true), PublishedDate, PublishedDate__is_set);
}
/**
* element : ReferenceElementContext of type {http://www.w3.org/2001/XMLSchema}string
* java type: java.lang.String
*/
private boolean ReferenceElementContext__is_set = false;
private java.lang.String ReferenceElementContext;
public java.lang.String getReferenceElementContext() {
return ReferenceElementContext;
}
public void setReferenceElementContext(java.lang.String ReferenceElementContext) {
this.ReferenceElementContext = ReferenceElementContext;
ReferenceElementContext__is_set = true;
}
protected void setReferenceElementContext(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__in.peekTag();
if (__typeMapper.isElement(__in, _lookupTypeInfo("ReferenceElementContext", "urn:sobject.tooling.soap.sforce.com","ReferenceElementContext","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
setReferenceElementContext(__typeMapper.readString(__in, _lookupTypeInfo("ReferenceElementContext", "urn:sobject.tooling.soap.sforce.com","ReferenceElementContext","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
}
}
private void writeFieldReferenceElementContext(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
__typeMapper.writeObject(__out, _lookupTypeInfo("ReferenceElementContext", "urn:sobject.tooling.soap.sforce.com","ReferenceElementContext","http://www.w3.org/2001/XMLSchema","string",0,1,true), ReferenceElementContext, ReferenceElementContext__is_set);
}
/**
* element : ShouldDisplayActionButton of type {http://www.w3.org/2001/XMLSchema}boolean
* java type: java.lang.Boolean
*/
private boolean ShouldDisplayActionButton__is_set = false;
private java.lang.Boolean ShouldDisplayActionButton;
public java.lang.Boolean getShouldDisplayActionButton() {
return ShouldDisplayActionButton;
}
public void setShouldDisplayActionButton(java.lang.Boolean ShouldDisplayActionButton) {
this.ShouldDisplayActionButton = ShouldDisplayActionButton;
ShouldDisplayActionButton__is_set = true;
}
protected void setShouldDisplayActionButton(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__in.peekTag();
if (__typeMapper.isElement(__in, _lookupTypeInfo("ShouldDisplayActionButton", "urn:sobject.tooling.soap.sforce.com","ShouldDisplayActionButton","http://www.w3.org/2001/XMLSchema","boolean",0,1,true))) {
setShouldDisplayActionButton((java.lang.Boolean)__typeMapper.readObject(__in, _lookupTypeInfo("ShouldDisplayActionButton", "urn:sobject.tooling.soap.sforce.com","ShouldDisplayActionButton","http://www.w3.org/2001/XMLSchema","boolean",0,1,true), java.lang.Boolean.class));
}
}
private void writeFieldShouldDisplayActionButton(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
__typeMapper.writeObject(__out, _lookupTypeInfo("ShouldDisplayActionButton", "urn:sobject.tooling.soap.sforce.com","ShouldDisplayActionButton","http://www.w3.org/2001/XMLSchema","boolean",0,1,true), ShouldDisplayActionButton, ShouldDisplayActionButton__is_set);
}
/**
* element : ShouldIgnoreGlobalDelay of type {http://www.w3.org/2001/XMLSchema}boolean
* java type: java.lang.Boolean
*/
private boolean ShouldIgnoreGlobalDelay__is_set = false;
private java.lang.Boolean ShouldIgnoreGlobalDelay;
public java.lang.Boolean getShouldIgnoreGlobalDelay() {
return ShouldIgnoreGlobalDelay;
}
public void setShouldIgnoreGlobalDelay(java.lang.Boolean ShouldIgnoreGlobalDelay) {
this.ShouldIgnoreGlobalDelay = ShouldIgnoreGlobalDelay;
ShouldIgnoreGlobalDelay__is_set = true;
}
protected void setShouldIgnoreGlobalDelay(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__in.peekTag();
if (__typeMapper.isElement(__in, _lookupTypeInfo("ShouldIgnoreGlobalDelay", "urn:sobject.tooling.soap.sforce.com","ShouldIgnoreGlobalDelay","http://www.w3.org/2001/XMLSchema","boolean",0,1,true))) {
setShouldIgnoreGlobalDelay((java.lang.Boolean)__typeMapper.readObject(__in, _lookupTypeInfo("ShouldIgnoreGlobalDelay", "urn:sobject.tooling.soap.sforce.com","ShouldIgnoreGlobalDelay","http://www.w3.org/2001/XMLSchema","boolean",0,1,true), java.lang.Boolean.class));
}
}
private void writeFieldShouldIgnoreGlobalDelay(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
__typeMapper.writeObject(__out, _lookupTypeInfo("ShouldIgnoreGlobalDelay", "urn:sobject.tooling.soap.sforce.com","ShouldIgnoreGlobalDelay","http://www.w3.org/2001/XMLSchema","boolean",0,1,true), ShouldIgnoreGlobalDelay, ShouldIgnoreGlobalDelay__is_set);
}
/**
* element : StartDate of type {http://www.w3.org/2001/XMLSchema}date
* java type: java.util.Calendar
*/
private boolean StartDate__is_set = false;
private java.util.Calendar StartDate;
public java.util.Calendar getStartDate() {
return StartDate;
}
public void setStartDate(java.util.Calendar StartDate) {
this.StartDate = StartDate;
StartDate__is_set = true;
}
protected void setStartDate(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__in.peekTag();
if (__typeMapper.isElement(__in, _lookupTypeInfo("StartDate", "urn:sobject.tooling.soap.sforce.com","StartDate","http://www.w3.org/2001/XMLSchema","date",0,1,true))) {
setStartDate((java.util.Calendar)__typeMapper.readObject(__in, _lookupTypeInfo("StartDate", "urn:sobject.tooling.soap.sforce.com","StartDate","http://www.w3.org/2001/XMLSchema","date",0,1,true), java.util.Calendar.class));
}
}
private void writeFieldStartDate(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
__typeMapper.writeObject(__out, _lookupTypeInfo("StartDate", "urn:sobject.tooling.soap.sforce.com","StartDate","http://www.w3.org/2001/XMLSchema","date",0,1,true), StartDate, StartDate__is_set);
}
/**
* element : StepNumber of type {http://www.w3.org/2001/XMLSchema}int
* java type: java.lang.Integer
*/
private boolean StepNumber__is_set = false;
private java.lang.Integer StepNumber;
public java.lang.Integer getStepNumber() {
return StepNumber;
}
public void setStepNumber(java.lang.Integer StepNumber) {
this.StepNumber = StepNumber;
StepNumber__is_set = true;
}
protected void setStepNumber(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__in.peekTag();
if (__typeMapper.isElement(__in, _lookupTypeInfo("StepNumber", "urn:sobject.tooling.soap.sforce.com","StepNumber","http://www.w3.org/2001/XMLSchema","int",0,1,true))) {
setStepNumber((java.lang.Integer)__typeMapper.readObject(__in, _lookupTypeInfo("StepNumber", "urn:sobject.tooling.soap.sforce.com","StepNumber","http://www.w3.org/2001/XMLSchema","int",0,1,true), java.lang.Integer.class));
}
}
private void writeFieldStepNumber(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
__typeMapper.writeObject(__out, _lookupTypeInfo("StepNumber", "urn:sobject.tooling.soap.sforce.com","StepNumber","http://www.w3.org/2001/XMLSchema","int",0,1,true), StepNumber, StepNumber__is_set);
}
/**
* element : SystemModstamp of type {http://www.w3.org/2001/XMLSchema}dateTime
* java type: java.util.Calendar
*/
private boolean SystemModstamp__is_set = false;
private java.util.Calendar SystemModstamp;
public java.util.Calendar getSystemModstamp() {
return SystemModstamp;
}
public void setSystemModstamp(java.util.Calendar SystemModstamp) {
this.SystemModstamp = SystemModstamp;
SystemModstamp__is_set = true;
}
protected void setSystemModstamp(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__in.peekTag();
if (__typeMapper.isElement(__in, _lookupTypeInfo("SystemModstamp", "urn:sobject.tooling.soap.sforce.com","SystemModstamp","http://www.w3.org/2001/XMLSchema","dateTime",0,1,true))) {
setSystemModstamp((java.util.Calendar)__typeMapper.readObject(__in, _lookupTypeInfo("SystemModstamp", "urn:sobject.tooling.soap.sforce.com","SystemModstamp","http://www.w3.org/2001/XMLSchema","dateTime",0,1,true), java.util.Calendar.class));
}
}
private void writeFieldSystemModstamp(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
__typeMapper.writeObject(__out, _lookupTypeInfo("SystemModstamp", "urn:sobject.tooling.soap.sforce.com","SystemModstamp","http://www.w3.org/2001/XMLSchema","dateTime",0,1,true), SystemModstamp, SystemModstamp__is_set);
}
/**
* element : TargetAppDeveloperName of type {http://www.w3.org/2001/XMLSchema}string
* java type: java.lang.String
*/
private boolean TargetAppDeveloperName__is_set = false;
private java.lang.String TargetAppDeveloperName;
public java.lang.String getTargetAppDeveloperName() {
return TargetAppDeveloperName;
}
public void setTargetAppDeveloperName(java.lang.String TargetAppDeveloperName) {
this.TargetAppDeveloperName = TargetAppDeveloperName;
TargetAppDeveloperName__is_set = true;
}
protected void setTargetAppDeveloperName(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__in.peekTag();
if (__typeMapper.isElement(__in, _lookupTypeInfo("TargetAppDeveloperName", "urn:sobject.tooling.soap.sforce.com","TargetAppDeveloperName","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
setTargetAppDeveloperName(__typeMapper.readString(__in, _lookupTypeInfo("TargetAppDeveloperName", "urn:sobject.tooling.soap.sforce.com","TargetAppDeveloperName","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
}
}
private void writeFieldTargetAppDeveloperName(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
__typeMapper.writeObject(__out, _lookupTypeInfo("TargetAppDeveloperName", "urn:sobject.tooling.soap.sforce.com","TargetAppDeveloperName","http://www.w3.org/2001/XMLSchema","string",0,1,true), TargetAppDeveloperName, TargetAppDeveloperName__is_set);
}
/**
* element : TargetAppNamespacePrefix of type {http://www.w3.org/2001/XMLSchema}string
* java type: java.lang.String
*/
private boolean TargetAppNamespacePrefix__is_set = false;
private java.lang.String TargetAppNamespacePrefix;
public java.lang.String getTargetAppNamespacePrefix() {
return TargetAppNamespacePrefix;
}
public void setTargetAppNamespacePrefix(java.lang.String TargetAppNamespacePrefix) {
this.TargetAppNamespacePrefix = TargetAppNamespacePrefix;
TargetAppNamespacePrefix__is_set = true;
}
protected void setTargetAppNamespacePrefix(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__in.peekTag();
if (__typeMapper.isElement(__in, _lookupTypeInfo("TargetAppNamespacePrefix", "urn:sobject.tooling.soap.sforce.com","TargetAppNamespacePrefix","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
setTargetAppNamespacePrefix(__typeMapper.readString(__in, _lookupTypeInfo("TargetAppNamespacePrefix", "urn:sobject.tooling.soap.sforce.com","TargetAppNamespacePrefix","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
}
}
private void writeFieldTargetAppNamespacePrefix(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
__typeMapper.writeObject(__out, _lookupTypeInfo("TargetAppNamespacePrefix", "urn:sobject.tooling.soap.sforce.com","TargetAppNamespacePrefix","http://www.w3.org/2001/XMLSchema","string",0,1,true), TargetAppNamespacePrefix, TargetAppNamespacePrefix__is_set);
}
/**
* element : TargetPageKey1 of type {http://www.w3.org/2001/XMLSchema}string
* java type: java.lang.String
*/
private boolean TargetPageKey1__is_set = false;
private java.lang.String TargetPageKey1;
public java.lang.String getTargetPageKey1() {
return TargetPageKey1;
}
public void setTargetPageKey1(java.lang.String TargetPageKey1) {
this.TargetPageKey1 = TargetPageKey1;
TargetPageKey1__is_set = true;
}
protected void setTargetPageKey1(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__in.peekTag();
if (__typeMapper.isElement(__in, _lookupTypeInfo("TargetPageKey1", "urn:sobject.tooling.soap.sforce.com","TargetPageKey1","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
setTargetPageKey1(__typeMapper.readString(__in, _lookupTypeInfo("TargetPageKey1", "urn:sobject.tooling.soap.sforce.com","TargetPageKey1","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
}
}
private void writeFieldTargetPageKey1(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
__typeMapper.writeObject(__out, _lookupTypeInfo("TargetPageKey1", "urn:sobject.tooling.soap.sforce.com","TargetPageKey1","http://www.w3.org/2001/XMLSchema","string",0,1,true), TargetPageKey1, TargetPageKey1__is_set);
}
/**
* element : TargetPageKey1Ref of type {http://www.w3.org/2001/XMLSchema}string
* java type: java.lang.String
*/
private boolean TargetPageKey1Ref__is_set = false;
private java.lang.String TargetPageKey1Ref;
public java.lang.String getTargetPageKey1Ref() {
return TargetPageKey1Ref;
}
public void setTargetPageKey1Ref(java.lang.String TargetPageKey1Ref) {
this.TargetPageKey1Ref = TargetPageKey1Ref;
TargetPageKey1Ref__is_set = true;
}
protected void setTargetPageKey1Ref(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__in.peekTag();
if (__typeMapper.isElement(__in, _lookupTypeInfo("TargetPageKey1Ref", "urn:sobject.tooling.soap.sforce.com","TargetPageKey1Ref","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
setTargetPageKey1Ref(__typeMapper.readString(__in, _lookupTypeInfo("TargetPageKey1Ref", "urn:sobject.tooling.soap.sforce.com","TargetPageKey1Ref","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
}
}
private void writeFieldTargetPageKey1Ref(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
__typeMapper.writeObject(__out, _lookupTypeInfo("TargetPageKey1Ref", "urn:sobject.tooling.soap.sforce.com","TargetPageKey1Ref","http://www.w3.org/2001/XMLSchema","string",0,1,true), TargetPageKey1Ref, TargetPageKey1Ref__is_set);
}
/**
* element : TargetPageKey2 of type {http://www.w3.org/2001/XMLSchema}string
* java type: java.lang.String
*/
private boolean TargetPageKey2__is_set = false;
private java.lang.String TargetPageKey2;
public java.lang.String getTargetPageKey2() {
return TargetPageKey2;
}
public void setTargetPageKey2(java.lang.String TargetPageKey2) {
this.TargetPageKey2 = TargetPageKey2;
TargetPageKey2__is_set = true;
}
protected void setTargetPageKey2(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__in.peekTag();
if (__typeMapper.isElement(__in, _lookupTypeInfo("TargetPageKey2", "urn:sobject.tooling.soap.sforce.com","TargetPageKey2","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
setTargetPageKey2(__typeMapper.readString(__in, _lookupTypeInfo("TargetPageKey2", "urn:sobject.tooling.soap.sforce.com","TargetPageKey2","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
}
}
private void writeFieldTargetPageKey2(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
__typeMapper.writeObject(__out, _lookupTypeInfo("TargetPageKey2", "urn:sobject.tooling.soap.sforce.com","TargetPageKey2","http://www.w3.org/2001/XMLSchema","string",0,1,true), TargetPageKey2, TargetPageKey2__is_set);
}
/**
* element : TargetPageKey3 of type {http://www.w3.org/2001/XMLSchema}string
* java type: java.lang.String
*/
private boolean TargetPageKey3__is_set = false;
private java.lang.String TargetPageKey3;
public java.lang.String getTargetPageKey3() {
return TargetPageKey3;
}
public void setTargetPageKey3(java.lang.String TargetPageKey3) {
this.TargetPageKey3 = TargetPageKey3;
TargetPageKey3__is_set = true;
}
protected void setTargetPageKey3(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__in.peekTag();
if (__typeMapper.isElement(__in, _lookupTypeInfo("TargetPageKey3", "urn:sobject.tooling.soap.sforce.com","TargetPageKey3","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
setTargetPageKey3(__typeMapper.readString(__in, _lookupTypeInfo("TargetPageKey3", "urn:sobject.tooling.soap.sforce.com","TargetPageKey3","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
}
}
private void writeFieldTargetPageKey3(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
__typeMapper.writeObject(__out, _lookupTypeInfo("TargetPageKey3", "urn:sobject.tooling.soap.sforce.com","TargetPageKey3","http://www.w3.org/2001/XMLSchema","string",0,1,true), TargetPageKey3, TargetPageKey3__is_set);
}
/**
* element : TargetPageKey4 of type {http://www.w3.org/2001/XMLSchema}string
* java type: java.lang.String
*/
private boolean TargetPageKey4__is_set = false;
private java.lang.String TargetPageKey4;
public java.lang.String getTargetPageKey4() {
return TargetPageKey4;
}
public void setTargetPageKey4(java.lang.String TargetPageKey4) {
this.TargetPageKey4 = TargetPageKey4;
TargetPageKey4__is_set = true;
}
protected void setTargetPageKey4(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__in.peekTag();
if (__typeMapper.isElement(__in, _lookupTypeInfo("TargetPageKey4", "urn:sobject.tooling.soap.sforce.com","TargetPageKey4","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
setTargetPageKey4(__typeMapper.readString(__in, _lookupTypeInfo("TargetPageKey4", "urn:sobject.tooling.soap.sforce.com","TargetPageKey4","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
}
}
private void writeFieldTargetPageKey4(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
__typeMapper.writeObject(__out, _lookupTypeInfo("TargetPageKey4", "urn:sobject.tooling.soap.sforce.com","TargetPageKey4","http://www.w3.org/2001/XMLSchema","string",0,1,true), TargetPageKey4, TargetPageKey4__is_set);
}
/**
* element : TargetPageType of type {http://www.w3.org/2001/XMLSchema}string
* java type: java.lang.String
*/
private boolean TargetPageType__is_set = false;
private java.lang.String TargetPageType;
public java.lang.String getTargetPageType() {
return TargetPageType;
}
public void setTargetPageType(java.lang.String TargetPageType) {
this.TargetPageType = TargetPageType;
TargetPageType__is_set = true;
}
protected void setTargetPageType(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__in.peekTag();
if (__typeMapper.isElement(__in, _lookupTypeInfo("TargetPageType", "urn:sobject.tooling.soap.sforce.com","TargetPageType","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
setTargetPageType(__typeMapper.readString(__in, _lookupTypeInfo("TargetPageType", "urn:sobject.tooling.soap.sforce.com","TargetPageType","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
}
}
private void writeFieldTargetPageType(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
__typeMapper.writeObject(__out, _lookupTypeInfo("TargetPageType", "urn:sobject.tooling.soap.sforce.com","TargetPageType","http://www.w3.org/2001/XMLSchema","string",0,1,true), TargetPageType, TargetPageType__is_set);
}
/**
* element : TargetRecordType of type {urn:sobject.tooling.soap.sforce.com}RecordType
* java type: com.sforce.soap.tooling.sobject.RecordType
*/
private boolean TargetRecordType__is_set = false;
private com.sforce.soap.tooling.sobject.RecordType TargetRecordType;
public com.sforce.soap.tooling.sobject.RecordType getTargetRecordType() {
return TargetRecordType;
}
public void setTargetRecordType(com.sforce.soap.tooling.sobject.RecordType TargetRecordType) {
this.TargetRecordType = TargetRecordType;
TargetRecordType__is_set = true;
}
protected void setTargetRecordType(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__in.peekTag();
if (__typeMapper.isElement(__in, _lookupTypeInfo("TargetRecordType", "urn:sobject.tooling.soap.sforce.com","TargetRecordType","urn:sobject.tooling.soap.sforce.com","RecordType",0,1,true))) {
setTargetRecordType((com.sforce.soap.tooling.sobject.RecordType)__typeMapper.readObject(__in, _lookupTypeInfo("TargetRecordType", "urn:sobject.tooling.soap.sforce.com","TargetRecordType","urn:sobject.tooling.soap.sforce.com","RecordType",0,1,true), com.sforce.soap.tooling.sobject.RecordType.class));
}
}
private void writeFieldTargetRecordType(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
__typeMapper.writeObject(__out, _lookupTypeInfo("TargetRecordType", "urn:sobject.tooling.soap.sforce.com","TargetRecordType","urn:sobject.tooling.soap.sforce.com","RecordType",0,1,true), TargetRecordType, TargetRecordType__is_set);
}
/**
* element : TargetRecordTypeId of type {urn:tooling.soap.sforce.com}ID
* java type: java.lang.String
*/
private boolean TargetRecordTypeId__is_set = false;
private java.lang.String TargetRecordTypeId;
public java.lang.String getTargetRecordTypeId() {
return TargetRecordTypeId;
}
public void setTargetRecordTypeId(java.lang.String TargetRecordTypeId) {
this.TargetRecordTypeId = TargetRecordTypeId;
TargetRecordTypeId__is_set = true;
}
protected void setTargetRecordTypeId(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__in.peekTag();
if (__typeMapper.isElement(__in, _lookupTypeInfo("TargetRecordTypeId", "urn:sobject.tooling.soap.sforce.com","TargetRecordTypeId","urn:tooling.soap.sforce.com","ID",0,1,true))) {
setTargetRecordTypeId(__typeMapper.readString(__in, _lookupTypeInfo("TargetRecordTypeId", "urn:sobject.tooling.soap.sforce.com","TargetRecordTypeId","urn:tooling.soap.sforce.com","ID",0,1,true), java.lang.String.class));
}
}
private void writeFieldTargetRecordTypeId(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
__typeMapper.writeObject(__out, _lookupTypeInfo("TargetRecordTypeId", "urn:sobject.tooling.soap.sforce.com","TargetRecordTypeId","urn:tooling.soap.sforce.com","ID",0,1,true), TargetRecordTypeId, TargetRecordTypeId__is_set);
}
/**
* element : ThemeColor of type {http://www.w3.org/2001/XMLSchema}string
* java type: java.lang.String
*/
private boolean ThemeColor__is_set = false;
private java.lang.String ThemeColor;
public java.lang.String getThemeColor() {
return ThemeColor;
}
public void setThemeColor(java.lang.String ThemeColor) {
this.ThemeColor = ThemeColor;
ThemeColor__is_set = true;
}
protected void setThemeColor(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__in.peekTag();
if (__typeMapper.isElement(__in, _lookupTypeInfo("ThemeColor", "urn:sobject.tooling.soap.sforce.com","ThemeColor","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
setThemeColor(__typeMapper.readString(__in, _lookupTypeInfo("ThemeColor", "urn:sobject.tooling.soap.sforce.com","ThemeColor","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
}
}
private void writeFieldThemeColor(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
__typeMapper.writeObject(__out, _lookupTypeInfo("ThemeColor", "urn:sobject.tooling.soap.sforce.com","ThemeColor","http://www.w3.org/2001/XMLSchema","string",0,1,true), ThemeColor, ThemeColor__is_set);
}
/**
* element : ThemeSaturation of type {http://www.w3.org/2001/XMLSchema}string
* java type: java.lang.String
*/
private boolean ThemeSaturation__is_set = false;
private java.lang.String ThemeSaturation;
public java.lang.String getThemeSaturation() {
return ThemeSaturation;
}
public void setThemeSaturation(java.lang.String ThemeSaturation) {
this.ThemeSaturation = ThemeSaturation;
ThemeSaturation__is_set = true;
}
protected void setThemeSaturation(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__in.peekTag();
if (__typeMapper.isElement(__in, _lookupTypeInfo("ThemeSaturation", "urn:sobject.tooling.soap.sforce.com","ThemeSaturation","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
setThemeSaturation(__typeMapper.readString(__in, _lookupTypeInfo("ThemeSaturation", "urn:sobject.tooling.soap.sforce.com","ThemeSaturation","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
}
}
private void writeFieldThemeSaturation(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
__typeMapper.writeObject(__out, _lookupTypeInfo("ThemeSaturation", "urn:sobject.tooling.soap.sforce.com","ThemeSaturation","http://www.w3.org/2001/XMLSchema","string",0,1,true), ThemeSaturation, ThemeSaturation__is_set);
}
/**
* element : TimesToDisplay of type {http://www.w3.org/2001/XMLSchema}int
* java type: java.lang.Integer
*/
private boolean TimesToDisplay__is_set = false;
private java.lang.Integer TimesToDisplay;
public java.lang.Integer getTimesToDisplay() {
return TimesToDisplay;
}
public void setTimesToDisplay(java.lang.Integer TimesToDisplay) {
this.TimesToDisplay = TimesToDisplay;
TimesToDisplay__is_set = true;
}
protected void setTimesToDisplay(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__in.peekTag();
if (__typeMapper.isElement(__in, _lookupTypeInfo("TimesToDisplay", "urn:sobject.tooling.soap.sforce.com","TimesToDisplay","http://www.w3.org/2001/XMLSchema","int",0,1,true))) {
setTimesToDisplay((java.lang.Integer)__typeMapper.readObject(__in, _lookupTypeInfo("TimesToDisplay", "urn:sobject.tooling.soap.sforce.com","TimesToDisplay","http://www.w3.org/2001/XMLSchema","int",0,1,true), java.lang.Integer.class));
}
}
private void writeFieldTimesToDisplay(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
__typeMapper.writeObject(__out, _lookupTypeInfo("TimesToDisplay", "urn:sobject.tooling.soap.sforce.com","TimesToDisplay","http://www.w3.org/2001/XMLSchema","int",0,1,true), TimesToDisplay, TimesToDisplay__is_set);
}
/**
* element : Title of type {http://www.w3.org/2001/XMLSchema}string
* java type: java.lang.String
*/
private boolean Title__is_set = false;
private java.lang.String Title;
public java.lang.String getTitle() {
return Title;
}
public void setTitle(java.lang.String Title) {
this.Title = Title;
Title__is_set = true;
}
protected void setTitle(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__in.peekTag();
if (__typeMapper.isElement(__in, _lookupTypeInfo("Title", "urn:sobject.tooling.soap.sforce.com","Title","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
setTitle(__typeMapper.readString(__in, _lookupTypeInfo("Title", "urn:sobject.tooling.soap.sforce.com","Title","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
}
}
private void writeFieldTitle(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
__typeMapper.writeObject(__out, _lookupTypeInfo("Title", "urn:sobject.tooling.soap.sforce.com","Title","http://www.w3.org/2001/XMLSchema","string",0,1,true), Title, Title__is_set);
}
/**
* element : UserAccess of type {http://www.w3.org/2001/XMLSchema}string
* java type: java.lang.String
*/
private boolean UserAccess__is_set = false;
private java.lang.String UserAccess;
public java.lang.String getUserAccess() {
return UserAccess;
}
public void setUserAccess(java.lang.String UserAccess) {
this.UserAccess = UserAccess;
UserAccess__is_set = true;
}
protected void setUserAccess(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__in.peekTag();
if (__typeMapper.isElement(__in, _lookupTypeInfo("UserAccess", "urn:sobject.tooling.soap.sforce.com","UserAccess","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
setUserAccess(__typeMapper.readString(__in, _lookupTypeInfo("UserAccess", "urn:sobject.tooling.soap.sforce.com","UserAccess","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
}
}
private void writeFieldUserAccess(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
__typeMapper.writeObject(__out, _lookupTypeInfo("UserAccess", "urn:sobject.tooling.soap.sforce.com","UserAccess","http://www.w3.org/2001/XMLSchema","string",0,1,true), UserAccess, UserAccess__is_set);
}
/**
* element : UserProfileAccess of type {http://www.w3.org/2001/XMLSchema}string
* java type: java.lang.String
*/
private boolean UserProfileAccess__is_set = false;
private java.lang.String UserProfileAccess;
public java.lang.String getUserProfileAccess() {
return UserProfileAccess;
}
public void setUserProfileAccess(java.lang.String UserProfileAccess) {
this.UserProfileAccess = UserProfileAccess;
UserProfileAccess__is_set = true;
}
protected void setUserProfileAccess(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__in.peekTag();
if (__typeMapper.isElement(__in, _lookupTypeInfo("UserProfileAccess", "urn:sobject.tooling.soap.sforce.com","UserProfileAccess","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
setUserProfileAccess(__typeMapper.readString(__in, _lookupTypeInfo("UserProfileAccess", "urn:sobject.tooling.soap.sforce.com","UserProfileAccess","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
}
}
private void writeFieldUserProfileAccess(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
__typeMapper.writeObject(__out, _lookupTypeInfo("UserProfileAccess", "urn:sobject.tooling.soap.sforce.com","UserProfileAccess","http://www.w3.org/2001/XMLSchema","string",0,1,true), UserProfileAccess, UserProfileAccess__is_set);
}
/**
* element : VersionNumber of type {http://www.w3.org/2001/XMLSchema}int
* java type: java.lang.Integer
*/
private boolean VersionNumber__is_set = false;
private java.lang.Integer VersionNumber;
public java.lang.Integer getVersionNumber() {
return VersionNumber;
}
public void setVersionNumber(java.lang.Integer VersionNumber) {
this.VersionNumber = VersionNumber;
VersionNumber__is_set = true;
}
protected void setVersionNumber(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__in.peekTag();
if (__typeMapper.isElement(__in, _lookupTypeInfo("VersionNumber", "urn:sobject.tooling.soap.sforce.com","VersionNumber","http://www.w3.org/2001/XMLSchema","int",0,1,true))) {
setVersionNumber((java.lang.Integer)__typeMapper.readObject(__in, _lookupTypeInfo("VersionNumber", "urn:sobject.tooling.soap.sforce.com","VersionNumber","http://www.w3.org/2001/XMLSchema","int",0,1,true), java.lang.Integer.class));
}
}
private void writeFieldVersionNumber(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
__typeMapper.writeObject(__out, _lookupTypeInfo("VersionNumber", "urn:sobject.tooling.soap.sforce.com","VersionNumber","http://www.w3.org/2001/XMLSchema","int",0,1,true), VersionNumber, VersionNumber__is_set);
}
/**
* element : VideoLink of type {http://www.w3.org/2001/XMLSchema}string
* java type: java.lang.String
*/
private boolean VideoLink__is_set = false;
private java.lang.String VideoLink;
public java.lang.String getVideoLink() {
return VideoLink;
}
public void setVideoLink(java.lang.String VideoLink) {
this.VideoLink = VideoLink;
VideoLink__is_set = true;
}
protected void setVideoLink(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__in.peekTag();
if (__typeMapper.isElement(__in, _lookupTypeInfo("VideoLink", "urn:sobject.tooling.soap.sforce.com","VideoLink","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
setVideoLink(__typeMapper.readString(__in, _lookupTypeInfo("VideoLink", "urn:sobject.tooling.soap.sforce.com","VideoLink","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
}
}
private void writeFieldVideoLink(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
__typeMapper.writeObject(__out, _lookupTypeInfo("VideoLink", "urn:sobject.tooling.soap.sforce.com","VideoLink","http://www.w3.org/2001/XMLSchema","string",0,1,true), VideoLink, VideoLink__is_set);
}
/**
*/
@Override
public void write(javax.xml.namespace.QName __element,
com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper)
throws java.io.IOException {
__out.writeStartTag(__element.getNamespaceURI(), __element.getLocalPart());
__typeMapper.writeXsiType(__out, "urn:sobject.tooling.soap.sforce.com", "PromptVersion");
writeFields(__out, __typeMapper);
__out.writeEndTag(__element.getNamespaceURI(), __element.getLocalPart());
}
protected void writeFields(com.sforce.ws.parser.XmlOutputStream __out,
com.sforce.ws.bind.TypeMapper __typeMapper)
throws java.io.IOException {
super.writeFields(__out, __typeMapper);
writeFields1(__out, __typeMapper);
}
@Override
public void load(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__typeMapper.consumeStartTag(__in);
loadFields(__in, __typeMapper);
__typeMapper.consumeEndTag(__in);
}
protected void loadFields(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
super.loadFields(__in, __typeMapper);
loadFields1(__in, __typeMapper);
}
@Override
public String toString() {
java.lang.StringBuilder sb = new java.lang.StringBuilder();
sb.append("[PromptVersion ");
sb.append(super.toString());
toString1(sb);
sb.append("]\n");
return sb.toString();
}
private void toStringHelper(StringBuilder sb, String name, Object value) {
sb.append(' ').append(name).append("='").append(com.sforce.ws.util.Verbose.toString(value)).append("'\n");
}
private void writeFields1(com.sforce.ws.parser.XmlOutputStream __out,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
writeFieldActionButtonLabel(__out, __typeMapper);
writeFieldActionButtonLink(__out, __typeMapper);
writeFieldBody(__out, __typeMapper);
writeFieldCreatedBy(__out, __typeMapper);
writeFieldCreatedById(__out, __typeMapper);
writeFieldCreatedDate(__out, __typeMapper);
writeFieldCustomApplication(__out, __typeMapper);
writeFieldCustomApplicationId(__out, __typeMapper);
writeFieldDelayDays(__out, __typeMapper);
writeFieldDescription(__out, __typeMapper);
writeFieldDismissButtonLabel(__out, __typeMapper);
writeFieldDisplayPosition(__out, __typeMapper);
writeFieldDisplayType(__out, __typeMapper);
writeFieldElementRelativePosition(__out, __typeMapper);
writeFieldEndDate(__out, __typeMapper);
writeFieldExperience(__out, __typeMapper);
writeFieldExperienceContext(__out, __typeMapper);
writeFieldExperienceContextId(__out, __typeMapper);
writeFieldHeader(__out, __typeMapper);
writeFieldImageAltText(__out, __typeMapper);
writeFieldImageId(__out, __typeMapper);
writeFieldImageLink(__out, __typeMapper);
writeFieldImageLocation(__out, __typeMapper);
writeFieldIndexWithIsPublished(__out, __typeMapper);
writeFieldIndexWithoutIsPublished(__out, __typeMapper);
writeFieldIsDeleted(__out, __typeMapper);
writeFieldIsPublished(__out, __typeMapper);
writeFieldLastModifiedBy(__out, __typeMapper);
writeFieldLastModifiedById(__out, __typeMapper);
writeFieldLastModifiedDate(__out, __typeMapper);
writeFieldManageableState(__out, __typeMapper);
writeFieldMasterLabel(__out, __typeMapper);
writeFieldParent(__out, __typeMapper);
writeFieldParentId(__out, __typeMapper);
writeFieldPublishedByUser(__out, __typeMapper);
writeFieldPublishedByUserId(__out, __typeMapper);
writeFieldPublishedDate(__out, __typeMapper);
writeFieldReferenceElementContext(__out, __typeMapper);
writeFieldShouldDisplayActionButton(__out, __typeMapper);
writeFieldShouldIgnoreGlobalDelay(__out, __typeMapper);
writeFieldStartDate(__out, __typeMapper);
writeFieldStepNumber(__out, __typeMapper);
writeFieldSystemModstamp(__out, __typeMapper);
writeFieldTargetAppDeveloperName(__out, __typeMapper);
writeFieldTargetAppNamespacePrefix(__out, __typeMapper);
writeFieldTargetPageKey1(__out, __typeMapper);
writeFieldTargetPageKey1Ref(__out, __typeMapper);
writeFieldTargetPageKey2(__out, __typeMapper);
writeFieldTargetPageKey3(__out, __typeMapper);
writeFieldTargetPageKey4(__out, __typeMapper);
writeFieldTargetPageType(__out, __typeMapper);
writeFieldTargetRecordType(__out, __typeMapper);
writeFieldTargetRecordTypeId(__out, __typeMapper);
writeFieldThemeColor(__out, __typeMapper);
writeFieldThemeSaturation(__out, __typeMapper);
writeFieldTimesToDisplay(__out, __typeMapper);
writeFieldTitle(__out, __typeMapper);
writeFieldUserAccess(__out, __typeMapper);
writeFieldUserProfileAccess(__out, __typeMapper);
writeFieldVersionNumber(__out, __typeMapper);
writeFieldVideoLink(__out, __typeMapper);
}
private void loadFields1(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
setActionButtonLabel(__in, __typeMapper);
setActionButtonLink(__in, __typeMapper);
setBody(__in, __typeMapper);
setCreatedBy(__in, __typeMapper);
setCreatedById(__in, __typeMapper);
setCreatedDate(__in, __typeMapper);
setCustomApplication(__in, __typeMapper);
setCustomApplicationId(__in, __typeMapper);
setDelayDays(__in, __typeMapper);
setDescription(__in, __typeMapper);
setDismissButtonLabel(__in, __typeMapper);
setDisplayPosition(__in, __typeMapper);
setDisplayType(__in, __typeMapper);
setElementRelativePosition(__in, __typeMapper);
setEndDate(__in, __typeMapper);
setExperience(__in, __typeMapper);
setExperienceContext(__in, __typeMapper);
setExperienceContextId(__in, __typeMapper);
setHeader(__in, __typeMapper);
setImageAltText(__in, __typeMapper);
setImageId(__in, __typeMapper);
setImageLink(__in, __typeMapper);
setImageLocation(__in, __typeMapper);
setIndexWithIsPublished(__in, __typeMapper);
setIndexWithoutIsPublished(__in, __typeMapper);
setIsDeleted(__in, __typeMapper);
setIsPublished(__in, __typeMapper);
setLastModifiedBy(__in, __typeMapper);
setLastModifiedById(__in, __typeMapper);
setLastModifiedDate(__in, __typeMapper);
setManageableState(__in, __typeMapper);
setMasterLabel(__in, __typeMapper);
setParent(__in, __typeMapper);
setParentId(__in, __typeMapper);
setPublishedByUser(__in, __typeMapper);
setPublishedByUserId(__in, __typeMapper);
setPublishedDate(__in, __typeMapper);
setReferenceElementContext(__in, __typeMapper);
setShouldDisplayActionButton(__in, __typeMapper);
setShouldIgnoreGlobalDelay(__in, __typeMapper);
setStartDate(__in, __typeMapper);
setStepNumber(__in, __typeMapper);
setSystemModstamp(__in, __typeMapper);
setTargetAppDeveloperName(__in, __typeMapper);
setTargetAppNamespacePrefix(__in, __typeMapper);
setTargetPageKey1(__in, __typeMapper);
setTargetPageKey1Ref(__in, __typeMapper);
setTargetPageKey2(__in, __typeMapper);
setTargetPageKey3(__in, __typeMapper);
setTargetPageKey4(__in, __typeMapper);
setTargetPageType(__in, __typeMapper);
setTargetRecordType(__in, __typeMapper);
setTargetRecordTypeId(__in, __typeMapper);
setThemeColor(__in, __typeMapper);
setThemeSaturation(__in, __typeMapper);
setTimesToDisplay(__in, __typeMapper);
setTitle(__in, __typeMapper);
setUserAccess(__in, __typeMapper);
setUserProfileAccess(__in, __typeMapper);
setVersionNumber(__in, __typeMapper);
setVideoLink(__in, __typeMapper);
}
private void toString1(StringBuilder sb) {
toStringHelper(sb, "ActionButtonLabel", ActionButtonLabel);
toStringHelper(sb, "ActionButtonLink", ActionButtonLink);
toStringHelper(sb, "Body", Body);
toStringHelper(sb, "CreatedBy", CreatedBy);
toStringHelper(sb, "CreatedById", CreatedById);
toStringHelper(sb, "CreatedDate", CreatedDate);
toStringHelper(sb, "CustomApplication", CustomApplication);
toStringHelper(sb, "CustomApplicationId", CustomApplicationId);
toStringHelper(sb, "DelayDays", DelayDays);
toStringHelper(sb, "Description", Description);
toStringHelper(sb, "DismissButtonLabel", DismissButtonLabel);
toStringHelper(sb, "DisplayPosition", DisplayPosition);
toStringHelper(sb, "DisplayType", DisplayType);
toStringHelper(sb, "ElementRelativePosition", ElementRelativePosition);
toStringHelper(sb, "EndDate", EndDate);
toStringHelper(sb, "Experience", Experience);
toStringHelper(sb, "ExperienceContext", ExperienceContext);
toStringHelper(sb, "ExperienceContextId", ExperienceContextId);
toStringHelper(sb, "Header", Header);
toStringHelper(sb, "ImageAltText", ImageAltText);
toStringHelper(sb, "ImageId", ImageId);
toStringHelper(sb, "ImageLink", ImageLink);
toStringHelper(sb, "ImageLocation", ImageLocation);
toStringHelper(sb, "IndexWithIsPublished", IndexWithIsPublished);
toStringHelper(sb, "IndexWithoutIsPublished", IndexWithoutIsPublished);
toStringHelper(sb, "IsDeleted", IsDeleted);
toStringHelper(sb, "IsPublished", IsPublished);
toStringHelper(sb, "LastModifiedBy", LastModifiedBy);
toStringHelper(sb, "LastModifiedById", LastModifiedById);
toStringHelper(sb, "LastModifiedDate", LastModifiedDate);
toStringHelper(sb, "ManageableState", ManageableState);
toStringHelper(sb, "MasterLabel", MasterLabel);
toStringHelper(sb, "Parent", Parent);
toStringHelper(sb, "ParentId", ParentId);
toStringHelper(sb, "PublishedByUser", PublishedByUser);
toStringHelper(sb, "PublishedByUserId", PublishedByUserId);
toStringHelper(sb, "PublishedDate", PublishedDate);
toStringHelper(sb, "ReferenceElementContext", ReferenceElementContext);
toStringHelper(sb, "ShouldDisplayActionButton", ShouldDisplayActionButton);
toStringHelper(sb, "ShouldIgnoreGlobalDelay", ShouldIgnoreGlobalDelay);
toStringHelper(sb, "StartDate", StartDate);
toStringHelper(sb, "StepNumber", StepNumber);
toStringHelper(sb, "SystemModstamp", SystemModstamp);
toStringHelper(sb, "TargetAppDeveloperName", TargetAppDeveloperName);
toStringHelper(sb, "TargetAppNamespacePrefix", TargetAppNamespacePrefix);
toStringHelper(sb, "TargetPageKey1", TargetPageKey1);
toStringHelper(sb, "TargetPageKey1Ref", TargetPageKey1Ref);
toStringHelper(sb, "TargetPageKey2", TargetPageKey2);
toStringHelper(sb, "TargetPageKey3", TargetPageKey3);
toStringHelper(sb, "TargetPageKey4", TargetPageKey4);
toStringHelper(sb, "TargetPageType", TargetPageType);
toStringHelper(sb, "TargetRecordType", TargetRecordType);
toStringHelper(sb, "TargetRecordTypeId", TargetRecordTypeId);
toStringHelper(sb, "ThemeColor", ThemeColor);
toStringHelper(sb, "ThemeSaturation", ThemeSaturation);
toStringHelper(sb, "TimesToDisplay", TimesToDisplay);
toStringHelper(sb, "Title", Title);
toStringHelper(sb, "UserAccess", UserAccess);
toStringHelper(sb, "UserProfileAccess", UserProfileAccess);
toStringHelper(sb, "VersionNumber", VersionNumber);
toStringHelper(sb, "VideoLink", VideoLink);
}
}