Package org.eclipse.ui.internal.handlers

Examples of org.eclipse.ui.internal.handlers.ActionDelegateHandlerProxy


    /*
     * Create the handler. TODO The image style is read at the workbench
     * level, but it is hard to communicate this information to this point.
     * For now, I'll pass null, but this ultimately won't work.
     */
    final ActionDelegateHandlerProxy handler = new ActionDelegateHandlerProxy(
        element, ATT_CLASS, actionId, command, window, null,
        enabledWhenExpression, viewId);

    // Read the help context id.
    final String helpContextId = readOptional(element, ATT_HELP_CONTEXT_ID);
View Full Code Here


    partHandler = realService.findHandler(commandId, appContext);
    if (partHandler == null) {
      localHandler = true;
      // if we can't find the handler, then at least we can
      // call the action delegate run method
      partHandler = new ActionDelegateHandlerProxy(element,
          IWorkbenchRegistryConstants.ATT_CLASS, actionId,
          getParameterizedCommand(), site.getWorkbenchWindow(), null,
          null, null);
    }
View Full Code Here

TOP

Related Classes of org.eclipse.ui.internal.handlers.ActionDelegateHandlerProxy

Copyright © 2018 www.massapicom. 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.