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 intgetValue()Returns the progress viewer's current value.voidsetInitialisationFinished()voidsetMaximum(int maximum)Sets the progress viewer's maximum value to n.voidsetText(String text)Sets the value of the progress text.voidsetValue(int value)Sets the progress viewer's current value to n.voidsetVisible(boolean b)Methods inherited from interface org.graffiti.util.ProgressViewer
getMaximum
-
Method Details
-
setMaximum
void setMaximum(int maximum)Description copied from interface:ProgressViewerSets the progress viewer's maximum value to n. By default, the maximum value is 100.- Specified by:
setMaximumin interfaceProgressViewer- Parameters:
maximum- the new maximum
-
setText
Description copied from interface:ProgressViewerSets 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:
setTextin interfaceProgressViewer- Parameters:
text- the value of the progress string
-
setValue
void setValue(int value)Description copied from interface:ProgressViewerSets the progress viewer's current value to n.- Specified by:
setValuein interfaceProgressViewer- Parameters:
value- the new value
-
getValue
int getValue()Description copied from interface:ProgressViewerReturns 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:
getValuein interfaceProgressViewer- Returns:
- DOCUMENT ME!
-
setVisible
void setVisible(boolean b)- Parameters:
b-
-
setInitialisationFinished
void setInitialisationFinished()
-