| |
|
| org.java.plugin.boot.SplashHandler
configure | void configure(ExtendedProperties config)(Code) | | Configures this handler instance. This method is called ones immediately
after handler instantiation.
Parameters: config - handler configuration data, here included all configurationparameters which name starts withorg.java.plugin.boot.splash. prefix |
getImage | URL getImage()(Code) | | current image URL |
getImplementation | Object getImplementation()(Code) | | Useful method to get access to handler internals. The actually returned
object depends on handler implementation.
original implementation of this handler, usually you returnthis (useful for handler wrappers) |
getProgress | float getProgress()(Code) | | boot progress value that is normalized to [0; 1] interval |
isVisible | boolean isVisible()(Code) | | true if splash screen is displayed now |
setImage | void setImage(URL value)(Code) | | Sets new image URL and optionally displays it on the splash screen.
Parameters: value - new image URL |
setProgress | void setProgress(float value)(Code) | | Sets boot progress value and optionally adjust visual progress bar
control. The value should be in [0; 1] interval.
Parameters: value - new progress value |
setText | void setText(String value)(Code) | | Sets new text caption and optionally display it on the screen.
Parameters: value - new text caption |
setVisible | void setVisible(boolean value)(Code) | | Shows/hides splash screen.
Parameters: value - true to show splash screen, false - to hide and dispose it |
|
|
|