Examples of IElementReference


Examples of org.eclipse.ui.commands.IElementReference

    if (callbackRefs == null) {
      return;
    }

    for (Iterator i = callbackRefs.iterator(); i.hasNext();) {
      final IElementReference callbackRef = (IElementReference) i.next();
      final Map parms = Collections.unmodifiableMap(callbackRef
          .getParameters());
      ISafeRunnable run = new ISafeRunnable() {
        public void handleException(Throwable exception) {
          WorkbenchPlugin.log("Failed to update callback: "  //$NON-NLS-1$
              + callbackRef.getCommandId(), exception);
        }

        public void run() throws Exception {
          updater.updateElement(callbackRef.getElement(), parms);
        }
      };
      if (filter == null) {
        SafeRunner.run(run);
      } else {
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.