Package q_impress.pmi.lib.tasks

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


      public void widgetSelected(SelectionEvent e) {
        // check that the editor is not dirty
        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) {
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.