| de.jwic.controls.IProgressMonitor
All known Subclasses: de.jwic.controls.ProgressMonitor,
IProgressMonitor | public interface IProgressMonitor (Code) | | Used to monitor the progress of an operation. Monitors are used by controls like the
ProgressMonitor to visualise the progress of an operation.
author: Lippisch |
addValueChangedListener | public void addValueChangedListener(ValueChangedListener listener)(Code) | | Add a ValueChangedListener. The listener must be invoked when the
value has been changed.
Parameters: listener - |
getMaximum | public int getMaximum()(Code) | | Returns the maximum value that the monitor can reach.
|
getMinimum | public int getMinimum()(Code) | | Returns the minium value that the progress starts with.
|
getValue | public int getValue()(Code) | | Returns the current progress value.
|
removeValueChangedListener | public void removeValueChangedListener(ValueChangedListener listener)(Code) | | Removes the specified listener.
Parameters: listener - |
|
|