public static interface SplashWindow.SplashDelegate
Modifier and Type | Method and Description |
---|---|
void |
dispose()
Hide the underlying splash implementation and release
all associated resources.
|
boolean |
isVisible()
Checks whether the underlying splash object is visible
|
void |
setMaxProgress(int maxValue)
Change the maximum progress value to the given argument
and refresh the progress bar.
|
void |
setProgress(int value)
Set the current progress value to the provided argument
and refresh the progress bar.
|
void |
setText(java.lang.String text)
Display the given
text next to the progress bar. |
void |
step()
Increments the progress by one.
|
boolean isVisible()
void dispose()
void setProgress(int value)
java.lang.IllegalArgumentException
- if value
<0
or value
>maxValue
void step()
java.lang.IllegalStateException
- if the current progress
has already reached the maximum allowed valuevoid setMaxProgress(int maxValue)
java.lang.IllegalArgumentException
- if maxValue
<
value
void setText(java.lang.String text)
text
next to the progress bar.