Package | Description |
---|---|
org.netbeans.api.progress.aggregate |
Advanced progress manipulation, allowing to construct a single progress indication bar
from multiple, possibly independent sources.
|
Modifier and Type | Method and Description |
---|---|
static ProgressContributor |
BasicAggregateProgressFactory.createProgressContributor(String trackingId) |
Modifier and Type | Method and Description |
---|---|
void |
AggregateProgressHandle.addContributor(ProgressContributor contributor)
add a contributor to the global, aggregated progress.
|
static AggregateProgressHandle |
BasicAggregateProgressFactory.createHandle(String displayName,
ProgressContributor[] contributors,
Cancellable allowToCancel)
Create an aggregating progress ui handle for a long lasting task.
|
static AggregateProgressHandle |
BasicAggregateProgressFactory.createHandle(String displayName,
ProgressContributor[] contributors,
Cancellable allowToCancel,
Action linkOutput)
Create an aggregating progress ui handle for a long lasting task.
|
static AggregateProgressHandle |
BasicAggregateProgressFactory.createSystemHandle(String displayName,
ProgressContributor[] contributors,
Cancellable allowToCancel,
Action linkOutput)
Create an aggregating progress ui handle for a long lasting task.
|
protected static AggregateProgressHandle |
BasicAggregateProgressFactory.doCreateHandle(String displayName,
ProgressContributor[] contributors,
Cancellable allowToCancel,
boolean systemHandle,
ProgressHandle h) |
void |
ProgressMonitor.finished(ProgressContributor contributor)
the given contributor finished it's work.
|
void |
ProgressMonitor.progressed(ProgressContributor contributor)
the given contributor progressed in it's work.
|
void |
ProgressMonitor.started(ProgressContributor contributor)
the given contributor started it's work.
|