public interface IProcessEventListener
Implementations of the IProcessEventListener are registered with a FormWidget and notified when a process is selected.
Modifier and Type | Method and Description |
---|---|
void |
cancelRequested(Form form,
java.lang.String process)
This operation directs the listener to cancel the last process request for the Form.
|
void |
processSelected(Form form,
java.lang.String process)
This operation notifies the listener that the Form has been marked to be processed.
|
void processSelected(Form form, java.lang.String process)
This operation notifies the listener that the Form has been marked to be processed.
form
- process
- void cancelRequested(Form form, java.lang.String process)
This operation directs the listener to cancel the last process request for the Form. There is no guarantee that it can actually cancel the process (it may finish first!).
form
- The form that was previously processed.
process
- The name of the process that was requested for the previous form.