Example #1
0
 @Override
 public IStatus runInUIThread(DBRProgressMonitor monitor) {
   /*
           if (mainMonitor.isCanceled()) {
               // Try to cancel current load service
               try {
                   loadService.cancel();
               }
               catch (InvocationTargetException e) {
                   log.warn("Error while canceling service", e.getTargetException());
               }
               return Status.CANCEL_STATUS;
           } else {
   */
   if (!visualizer.isCompleted()) {
     visualizer.visualizeLoading();
     schedule(DELAY);
   }
   // }
   return Status.OK_STATUS;
 }