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 void
showErrorMessage(java.lang.String message)
void
startProgress(java.lang.String text, int min, int max)
void
stopProgress()
void
updateProgress(int value)
void
updateProgress(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)
-
-