Package | Description |
---|---|
org.netbeans.api.progress |
This API allows to visualize tracking for progress of long lasting tasks.
|
org.netbeans.modules.progress.spi |
Interfaces permitting a UI for the progress system to be supplied.
|
Modifier and Type | Method and Description |
---|---|
static <T> T |
BaseProgressUtils.showProgressDialogAndRun(ProgressRunnable<T> operation,
String displayName,
boolean includeDetailLabel)
Show a modal progress dialog that blocks the main window and all other
currently displayed frames or dialogs, while running the passed runnable
on a background thread.
|
static <T> Future<T> |
BaseProgressUtils.showProgressDialogAndRunLater(ProgressRunnable<T> operation,
ProgressHandle handle,
boolean includeDetailLabel)
Show a modal progress dialog that blocks the main window and all other
currently displayed frames or dialogs while running a background process.
|
Modifier and Type | Method and Description |
---|---|
<T> T |
RunOffEDTProvider.Progress.showProgressDialogAndRun(ProgressRunnable<T> toRun,
String displayName,
boolean includeDetailLabel)
Show a modal progress dialog that blocks the main window while running
a background process.
|
<T> Future<T> |
RunOffEDTProvider.Progress.showProgressDialogAndRunLater(ProgressRunnable<T> toRun,
ProgressHandle handle,
boolean includeDetailLabel)
Show a modal progress dialog that blocks the main window while running
a background process.
|