public interface AbstractUIProgressHandler extends AbstractUIHandler
ANSWER_CANCEL, ANSWER_NO, ANSWER_YES, CHOICES_YES_NO, CHOICES_YES_NO_CANCEL
Modifier and Type | Method and Description |
---|---|
void |
nextStep(java.lang.String step_name,
int step_no,
int no_of_substeps)
The next step starts.
|
void |
progress(int substep_no,
java.lang.String message)
Notify of progress.
|
void |
startAction(java.lang.String name,
int no_of_steps)
The action starts.
|
void |
stopAction()
The action was finished.
|
askQuestion, askQuestion, emitError, emitNotification, emitWarning
void startAction(java.lang.String name, int no_of_steps)
name
- The name of the action.no_of_steps
- The number of steps the action consists of.void stopAction()
void nextStep(java.lang.String step_name, int step_no, int no_of_substeps)
step_name
- The name of the step which starts now.step_no
- The number of the step.no_of_substeps
- The number of sub-steps this step consists of.void progress(int substep_no, java.lang.String message)
substep_no
- The substep which will be performed next.message
- An additional message describing the substep.