Package org.eclipse.jface.action

Examples of org.eclipse.jface.action.ToolBarManager.update()


            new ClusterTreeExpanderAction(
                ClusterTreeExpanderAction.CollapseAction.COLLAPSE,
                clustersTree, this.getSearchResult()),
            IAction.AS_PUSH_BUTTON));

        toolBarManager.update(true);
        sec.setTextClient(toolbar);

        return sec;
    }
View Full Code Here


       
        // Save/ load attributes.
        final IAction saveLoadAction = new SaveAlgorithmAttributesAction(getSearchResult().getInput());
        toolBarManager.add(saveLoadAction);

        toolBarManager.update(true);
        sec.setTextClient(toolbar);

        /*
         * Update global preferences when local change.
         */
 
View Full Code Here

        ImagesView.this.textFilter.setText("");
      }
    };
    clearFlt.setImageDescriptor(this.clearCo);
    man.add(clearFlt);
    man.update(true);
    this.fld = new CTabFolder(parent, SWT.BOTTOM | SWT.FLAT);
    this.configureTab(store1, this.fld);
    this.fld.setSelection(0);
    final Action action = new Action() {
View Full Code Here

          "Show Qualified Type Names",
          DozerPlugin.getDefault().getImageRegistry().getDescriptor(DozerPlugin.IMG_PACKAGE),
          tableViewer);
    toolBarManager.add(fExtendAction);

    toolBarManager.update(true);

    section.setTextClient(toolbar);
  }

 
View Full Code Here

    // fill the failure trace viewer toolbar
    ToolBarManager failureToolBarmanager = new ToolBarManager(toolBar);
    fCompareAction = new CompareResultsAction(this);
    fCompareAction.setEnabled(false);
    failureToolBarmanager.add(fCompareAction);
    failureToolBarmanager.update(true);

    fTable = new Table(parent, SWT.SINGLE | SWT.V_SCROLL | SWT.H_SCROLL);
    fTestRunner = testRunner;

    fClipboard= new Clipboard(parent.getDisplay());
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.