Package q_impress.pmi.lib.tasks

Examples of q_impress.pmi.lib.tasks.AbstractTask.execute()


        if (!getEditor().isDirty()) {
          IStructuredSelection selection = (IStructuredSelection) tasksListViewer.getSelection();
          AbstractTask task = (AbstractTask) selection.getFirstElement();
          if (task.canExecute()) {
            try {
              task.execute();
              tasksListSectionPart.markStale();
              tasksListSectionPart.markDirty();
            } catch (TaskException e1) {
              ErrorDialog.openError(PlatformUI.getWorkbench().getDisplay().getActiveShell(),
                  "Task Execution", "Task execution failed", new Status(IStatus.ERROR, "q_impress", e1.getMessage(), e1));
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.