-
Book Overview & Buying
-
Table Of Contents
Eclipse Plug-in Development Beginner's Guide - Second Edition
By :
Sometimes the user will change their mind; they may have selected the wrong option, or something more important may have come up. The progress monitor allows for two-way communication; the user can signify when they want to cancel as well. There is a method, isCancelled, which returns true if the user has signified in some way that they want the job to finish early.
Periodically checking this during the operation of the Job allows the user to cancel a long-running job before it reaches the end.
Modify the for loop in the HelloHandler to check on each iteration whether the monitor is cancelled:
for (int i = 0; i < 50 && !monitor.isCanceled(); i++) {
...
}
if (!monitor.isCancelled()) {
display.asyncExec(() -> {...});
}Run the Eclipse instance and click on the Hello command. This time, go into the Progress view and click on the red stop square next to the job; the job should cancel and the dialog showing the message shouldn't be shown...
Change the font size
Change margin width
Change background colour