All Packages Class Hierarchy This Package Previous Next Index
Interface com.ibm.hi.customizer.beans.scci.SCButton
- public interface SCButton
- extends SCCustomComponent
SCButton is the interface for button components.
- See Also:
- SCBall, SCWebLink, SCImageButton, SCButtonVV
-
BALL
- style for a round ball, only valid for SCBalls
-
DYNAMIC
- style for a dynamic, roll-over button
-
LABEL
- style for a button that looks like a flat label, only valid for SCWebLinks
-
STANDARD
- style for a normal button
-
doClick()
- Performs the click operation by invoking the SCMacro.
-
getMacro()
- Gets the SCMacro.
-
isTransparent()
- Gets the transparent background flag.
-
isUnderlined()
- Gets the underlined flag.
-
setMacro(SCMacro)
- Sets the SCMacro to be invoked on a
doClick()
.
-
setTransparent(boolean)
- Sets the transparent background flag.
-
setUnderlined(boolean)
- Sets the underlined flag.
BALL
public static final int BALL
- style for a round ball, only valid for SCBalls
DYNAMIC
public static final int DYNAMIC
- style for a dynamic, roll-over button
LABEL
public static final int LABEL
- style for a button that looks like a flat label, only valid for SCWebLinks
STANDARD
public static final int STANDARD
- style for a normal button
doClick
public abstract void doClick()
- Performs the click operation by invoking the SCMacro.
- See Also:
- setMacro
getMacro
public abstract SCMacro getMacro()
- Gets the SCMacro.
- See Also:
- setMacro
setMacro
public abstract void setMacro(SCMacro macro)
- Sets the SCMacro to be invoked on a
doClick()
.
- See Also:
- SCMacro
setTransparent
public abstract void setTransparent(boolean transparent)
- Sets the transparent background flag.
isTransparent
public abstract boolean isTransparent()
- Gets the transparent background flag.
setUnderlined
public abstract void setUnderlined(boolean underlined)
- Sets the underlined flag.
isUnderlined
public abstract boolean isUnderlined()
- Gets the underlined flag.
All Packages Class Hierarchy This Package Previous Next Index