echopoint.style
Class ProgressBarStyle
java.lang.Object
nextapp.echo.app.MutableStyle
echopoint.style.AbstractStyle
echopoint.style.ProgressBarStyle
- All Implemented Interfaces:
- Serializable, Style
public class ProgressBarStyle
- extends AbstractStyle
A default style for the ProgressBar component.
- Version:
- $Id: ProgressBarStyle.java 208 2009-05-25 02:40:35Z sptrakesh $
- Author:
- Rakesh Vidyadharan 2009-05-15
- See Also:
- Serialized Form
|
Field Summary |
static String |
BACKGROUND
The default background colour to use for the component. |
static String |
BAR_BACKGROUND
The default bar background colour to use for the component. |
static String |
FOREGROUND
The default foreground colour to use for the component. |
|
Method Summary |
protected void |
init()
Mandatory style initialisation method to be implemented by all
sub-classes. |
| Methods inherited from class nextapp.echo.app.MutableStyle |
addStyleContent, getIndex, getIndexedProperty, getProperty, getPropertyIndices, getPropertyNames, isIndexedPropertySet, isPropertySet, removeIndexedProperty, removeProperty, set, setIndex, setIndexedProperty, setProperty, size, toString |
BACKGROUND
public static final String BACKGROUND
- The default background colour to use for the component.
"#a1a1a1"
- See Also:
- Constant Field Values
FOREGROUND
public static final String FOREGROUND
- The default foreground colour to use for the component.
"#ffffff"
- See Also:
- Constant Field Values
BAR_BACKGROUND
public static final String BAR_BACKGROUND
- The default bar background colour to use for the component.
"#1a428a"
- See Also:
- Constant Field Values
ProgressBarStyle
public ProgressBarStyle()
init
protected void init()
- Mandatory style initialisation method to be implemented by all
sub-classes. The default implementation sets the default font to use.
Sub-classes should generally invoke
super.init().
- Overrides:
init in class AbstractStyle
- See Also:
DefaultFont,
AbstractStyle.setFont()