Package org.graffiti.editor
Interface SplashScreenInterface
- All Superinterfaces:
ProgressViewer
- All Known Implementing Classes:
ClusterSplashScreen
,DBEsplashScreen
,SplashScreen
public interface SplashScreenInterface extends ProgressViewer
- Author:
- Christian Klukas (c) 2004 IPK-Gatersleben
-
Method Summary
Modifier and Type Method Description int
getValue()
Returns the progress viewer's current value.void
setInitialisationFinished()
void
setMaximum(int maximum)
Sets the progress viewer's maximum value to n.void
setText(String text)
Sets the value of the progress text.void
setValue(int value)
Sets the progress viewer's current value to n.void
setVisible(boolean b)
Methods inherited from interface org.graffiti.util.ProgressViewer
getMaximum
-
Method Details
-
setMaximum
void setMaximum(int maximum)Description copied from interface:ProgressViewer
Sets the progress viewer's maximum value to n. By default, the maximum value is 100.- Specified by:
setMaximum
in interfaceProgressViewer
- Parameters:
maximum
- the new maximum
-
setText
Description copied from interface:ProgressViewer
Sets the value of the progress text. By default, this string is null. If you have provided a custom progress string and want to revert to the built-in behavior, set the string back to null.- Specified by:
setText
in interfaceProgressViewer
- Parameters:
text
- the value of the progress string
-
setValue
void setValue(int value)Description copied from interface:ProgressViewer
Sets the progress viewer's current value to n.- Specified by:
setValue
in interfaceProgressViewer
- Parameters:
value
- the new value
-
getValue
int getValue()Description copied from interface:ProgressViewer
Returns the progress viewer's current value. The value is always between the zero and the maximum values, inclusive. By default, the value is initialized to zero.- Specified by:
getValue
in interfaceProgressViewer
- Returns:
- DOCUMENT ME!
-
setVisible
void setVisible(boolean b)- Parameters:
b
-
-
setInitialisationFinished
void setInitialisationFinished()
-