Package com.actelion.research.calc
Interface ProgressListener
-
- All Known Subinterfaces:
ProgressController
- All Known Implementing Classes:
JProgressDialog,JProgressPanel
public interface ProgressListener
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidshowErrorMessage(java.lang.String message)voidstartProgress(java.lang.String text, int min, int max)voidstopProgress()voidupdateProgress(int value)voidupdateProgress(int value, java.lang.String message)
-
-
-
Method Detail
-
startProgress
void startProgress(java.lang.String text, int min, int max)
-
updateProgress
void updateProgress(int value)
-
updateProgress
void updateProgress(int value, java.lang.String message)
-
stopProgress
void stopProgress()
-
showErrorMessage
void showErrorMessage(java.lang.String message)
-
-