Interface IProgressObserver
-
- All Known Implementing Classes:
ProgressWindow
public interface IProgressObserverListener for ProgressObserver
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidprogressChanged(boolean visible)Update the visbility of the progressbarvoidprogressChanged(int val)Update the progressbar with a new valuevoidprogressChanged(int min, int max, int val)Update the progressbar with new min and max valuesvoidprogressChanged(String text)Update the text of the progressbarvoidprogressCompleted()Indicates completion of the progress and provides the resultvoidprogressIncreased()Update the progressbar by adding 1 to the valuevoidprogressModeChanged(boolean indeterminate)Sets the progressbar to indeterminate mode or not
-
-
-
Method Detail
-
progressIncreased
void progressIncreased()
Update the progressbar by adding 1 to the value
-
progressChanged
void progressChanged(int val)
Update the progressbar with a new value- Parameters:
val- Value
-
progressChanged
void progressChanged(int min, int max, int val)Update the progressbar with new min and max values- Parameters:
min- Minimummax- Maximumval- Value
-
progressChanged
void progressChanged(String text)
Update the text of the progressbar- Parameters:
text- Progressbar-Text
-
progressChanged
void progressChanged(boolean visible)
Update the visbility of the progressbar- Parameters:
visible- Visibility
-
progressModeChanged
void progressModeChanged(boolean indeterminate)
Sets the progressbar to indeterminate mode or not- Parameters:
indeterminate- Indeterminate
-
progressCompleted
void progressCompleted()
Indicates completion of the progress and provides the result
-
-