Examples of ViewPreferencesAction


Examples of org.eclipse.ui.preferences.ViewPreferencesAction

  }

  private void initPulldownMenu() {
    IMenuManager menuMgr = getViewSite().getActionBars().getMenuManager();
    menuMgr.add(clearAllAction);
    menuMgr.add(new ViewPreferencesAction() {
      /*
       * (non-Javadoc)
       *
       * @see org.eclipse.ui.internal.preferences.ViewPreferencesAction#openViewPreferencesDialog()
       */
 
View Full Code Here

Examples of org.eclipse.ui.preferences.ViewPreferencesAction

  }

  private void initPulldownMenu() {
    IMenuManager menuMgr = getViewSite().getActionBars().getMenuManager();
    menuMgr.add(clearAllAction);
    menuMgr.add(new ViewPreferencesAction() {
      /*
       * (non-Javadoc)
       *
       * @see org.eclipse.ui.internal.preferences.ViewPreferencesAction#openViewPreferencesDialog()
       */
 
View Full Code Here

Examples of org.jitterbit.application.ui.window.action.ViewPreferencesAction

        this.appWin = appWin;
    }

    @Override
    public void execute(String[] params) throws CommandException {
        ViewPreferencesAction action = new ViewPreferencesAction(appWin);
        if (params.length > 0) {
            action.setInitialPath(params);
        }
        ActionUtils.run(action, this, "prefs");
    }
View Full Code Here

Examples of org.jitterbit.application.ui.window.action.ViewPreferencesAction

        return menu;
    }
   
    private Action createPreferencesAction() {
        ApplicationWindow appWin = controller.getView().getWindow();
        ViewPreferencesAction action = new ViewPreferencesAction(appWin);
        action.putValue(Action.ACCELERATOR_KEY, null);
        action.setInitialPath(OperationGraphPreferencesPage.PATH());
        return action;
    }
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.