Package org.eclipse.ui.internal.cheatsheets.actions

Examples of org.eclipse.ui.internal.cheatsheets.actions.CheatSheetCategoryBasedSelectionAction


  public Object execute(ExecutionEvent event) throws ExecutionException {

    String cheatSheetId = event.getParameter(PARAM_ID_CHEAT_SHEET_ID);

    if (cheatSheetId == null) {
      CheatSheetCategoryBasedSelectionAction action = new CheatSheetCategoryBasedSelectionAction();
      action.run();
    } else {
      OpenCheatSheetAction action = new OpenCheatSheetAction(cheatSheetId);
      action.run();
    }

    return null;
  }
View Full Code Here

TOP

Related Classes of org.eclipse.ui.internal.cheatsheets.actions.CheatSheetCategoryBasedSelectionAction

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.