Examples of openKeyAssistDialog()


Examples of org.eclipse.ui.keys.IBindingService.openKeyAssistDialog()

    helpMenu.add(new Action(Messages.ApplicationActionBarAdvisor_SHOW_KEY_BINDINGS) {
      @Override
      public void run() {
        IWorkbench workbench = PlatformUI.getWorkbench();
        IBindingService bindingService = (IBindingService) workbench.getService(IBindingService.class);
        bindingService.openKeyAssistDialog();
      }
    });

    helpMenu.add(new Separator());
View Full Code Here

Examples of org.eclipse.ui.keys.IBindingService.openKeyAssistDialog()

   * @return <code>null</code>
   */
  public Object execute(final ExecutionEvent event) {
    final IWorkbench workbench = PlatformUI.getWorkbench();
    final IBindingService bindingService = (IBindingService) workbench.getService(IBindingService.class);
    bindingService.openKeyAssistDialog();
    return null;
  }
}
View Full Code Here

Examples of org.eclipse.ui.keys.IBindingService.openKeyAssistDialog()

    helpMenu.add(new Action(Messages.ApplicationActionBarAdvisor_SHOW_KEY_BINDINGS) {
      @Override
      public void run() {
        IWorkbench workbench = PlatformUI.getWorkbench();
        IBindingService bindingService = (IBindingService) workbench.getService(IBindingService.class);
        bindingService.openKeyAssistDialog();
      }
    });

    helpMenu.add(new Separator());
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.