| java.lang.Object org.netbeans.modules.sun.manager.jbi.util.ProgressUI
ProgressUI | public class ProgressUI implements ProgressListener(Code) | | Progress UI provides a feedback for long lasting taks like deploying to a server,
starting or stopping a server, etc. The progress bar is indeterminate, displayed
in the status bar if in non-modal mode, otherwise in a modal dialog.
author: sherold |
Method Summary | |
public void | failed(String message) Display a failure dialog with the specified message and call finish. | public void | finish() Finish the task, unregister the progress object listener and dispose the ui. | public void | handleProgressEvent(ProgressEvent progressEvent) | public void | progress(String message) Displays a specified progress message. | public void | setProgressObject(ProgressObject obj) Set a progress object this progress UI will monitor. | public void | start() Start the progress indication for indeterminate task. |
ProgressUI | public ProgressUI(String title, boolean modal)(Code) | | Creates a new instance of ProgressUI
|
failed | public void failed(String message)(Code) | | Display a failure dialog with the specified message and call finish.
|
finish | public void finish()(Code) | | Finish the task, unregister the progress object listener and dispose the ui.
|
handleProgressEvent | public void handleProgressEvent(ProgressEvent progressEvent)(Code) | | |
progress | public void progress(String message)(Code) | | Displays a specified progress message.
|
setProgressObject | public void setProgressObject(ProgressObject obj)(Code) | | Set a progress object this progress UI will monitor.
|
start | public void start()(Code) | | Start the progress indication for indeterminate task.
|
|
|