
com.palominolabs.crm.sf.soap.jaxwsstub.metadata.CustomApplicationComponent Maven / Gradle / Ivy
The newest version!
package com.palominolabs.crm.sf.soap.jaxwsstub.metadata;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for CustomApplicationComponent complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CustomApplicationComponent">
* <complexContent>
* <extension base="{http://soap.sforce.com/2006/04/metadata}Metadata">
* <sequence>
* <element name="buttonIconUrl" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="buttonStyle" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="buttonText" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="buttonWidth" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="height" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="isHeightFixed" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="isHidden" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="isWidthFixed" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="visualforcePage" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="width" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CustomApplicationComponent", propOrder = {
"buttonIconUrl",
"buttonStyle",
"buttonText",
"buttonWidth",
"height",
"isHeightFixed",
"isHidden",
"isWidthFixed",
"visualforcePage",
"width"
})
public class CustomApplicationComponent
extends Metadata
{
protected String buttonIconUrl;
protected String buttonStyle;
protected String buttonText;
protected Integer buttonWidth;
protected Integer height;
protected boolean isHeightFixed;
protected boolean isHidden;
protected boolean isWidthFixed;
@XmlElement(required = true)
protected String visualforcePage;
protected Integer width;
/**
* Gets the value of the buttonIconUrl property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getButtonIconUrl() {
return buttonIconUrl;
}
/**
* Sets the value of the buttonIconUrl property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setButtonIconUrl(String value) {
this.buttonIconUrl = value;
}
/**
* Gets the value of the buttonStyle property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getButtonStyle() {
return buttonStyle;
}
/**
* Sets the value of the buttonStyle property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setButtonStyle(String value) {
this.buttonStyle = value;
}
/**
* Gets the value of the buttonText property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getButtonText() {
return buttonText;
}
/**
* Sets the value of the buttonText property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setButtonText(String value) {
this.buttonText = value;
}
/**
* Gets the value of the buttonWidth property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getButtonWidth() {
return buttonWidth;
}
/**
* Sets the value of the buttonWidth property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setButtonWidth(Integer value) {
this.buttonWidth = value;
}
/**
* Gets the value of the height property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getHeight() {
return height;
}
/**
* Sets the value of the height property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setHeight(Integer value) {
this.height = value;
}
/**
* Gets the value of the isHeightFixed property.
*
*/
public boolean isIsHeightFixed() {
return isHeightFixed;
}
/**
* Sets the value of the isHeightFixed property.
*
*/
public void setIsHeightFixed(boolean value) {
this.isHeightFixed = value;
}
/**
* Gets the value of the isHidden property.
*
*/
public boolean isIsHidden() {
return isHidden;
}
/**
* Sets the value of the isHidden property.
*
*/
public void setIsHidden(boolean value) {
this.isHidden = value;
}
/**
* Gets the value of the isWidthFixed property.
*
*/
public boolean isIsWidthFixed() {
return isWidthFixed;
}
/**
* Sets the value of the isWidthFixed property.
*
*/
public void setIsWidthFixed(boolean value) {
this.isWidthFixed = value;
}
/**
* Gets the value of the visualforcePage property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVisualforcePage() {
return visualforcePage;
}
/**
* Sets the value of the visualforcePage property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVisualforcePage(String value) {
this.visualforcePage = value;
}
/**
* Gets the value of the width property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getWidth() {
return width;
}
/**
* Sets the value of the width property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setWidth(Integer value) {
this.width = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy