Examples of registerAction()


Examples of org.eclipse.ui.IKeyBindingService.registerAction()

              // update visibility right now so that the menu
              // will show/hide properly
              if (!((IExtendedEditorAction) action).isVisible() && ad.getContributionItem() != null)
                ad.getContributionItem().setVisible(false);
              if (svc != null && action.getActionDefinitionId() != null) {
                svc.registerAction(action);
              }
            }
          }
          catch (Exception e) {
            Logger.logException("setting active editor on actions", e); //$NON-NLS-1$
View Full Code Here

Examples of org.jitterbit.application.ui.window.editor.DefaultEditorController.registerAction()

    }

    @Override
    protected EditorController createController() {
        DefaultEditorController ctrl = new DefaultEditorController();
        ctrl.registerAction(KeyUtils.ENTER, deployAction);
        return ctrl;
    }

    private void layoutPageAndStartValidation() {
        layoutWaitPanel();
View Full Code Here

Examples of org.jitterbit.integration.client.ui.interchange.component.page.entity.DefaultEntityPageController.registerAction()

    }

    private void installController(IntegrationEntityPage page) {
        DefaultEntityPageController ctrl = new DefaultEntityPageController(page);
        if (searchAction != null) {
            ctrl.registerAction(KeyUtils.FIND, searchAction);
        }
        impl.setController(ctrl);
    }

    private void installFormulaDisplayer(TransformationPage page) {
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.