public class ScanDialog extends Object
Modifier and Type | Method and Description |
---|---|
static boolean |
runWhenScanFinished(Runnable runnable,
String actionName)
This is a helper method to provide support for delaying invocations of actions
depending on java model.
|
public static boolean runWhenScanFinished(Runnable runnable, String actionName)
As soon as classpath scanning finishes, this dialog is closed and runnable's run() is called. This method must be called in AWT EventQueue. Runnable is performed in AWT thread.
runnable
- Runnable instance which will be called.actionName
- Title of wait dialog.which provides delayed invocation
of action without UI notification.