|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface IModalRunnable
Modal runnables represent blocks of code and associated exception handlers. They are typically used by time-consuming tasks to display message on a modal dialog.
Method Summary | |
---|---|
void |
handleException(java.lang.Exception exception)
Handles an exception thrown by this runnable's run
method. |
void |
run()
Runs this runnable. |
Method Detail |
---|
void handleException(java.lang.Exception exception)
run
method. The processing done here should be specific to the
particular usecase for this runnable.
exception
- an exception which occurred during processing
the body of this runnable (i.e., in run()
)ModalRunner.run(IModalRunnable)
void run() throws java.lang.Exception
handleException
method.
java.lang.Exception
- if a problem occurred while running this method.
The exception will be processed by handleException
ModalRunner.run(IModalRunnable)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |