OpenNewMRClassWizardAction.java
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:3k
源码类别:

网格计算

开发平台:

Java

  1. /**
  2.  * Licensed to the Apache Software Foundation (ASF) under one
  3.  * or more contributor license agreements.  See the NOTICE file
  4.  * distributed with this work for additional information
  5.  * regarding copyright ownership.  The ASF licenses this file
  6.  * to you under the Apache License, Version 2.0 (the
  7.  * "License"); you may not use this file except in compliance
  8.  * with the License.  You may obtain a copy of the License at
  9.  *
  10.  *     http://www.apache.org/licenses/LICENSE-2.0
  11.  *
  12.  * Unless required by applicable law or agreed to in writing, software
  13.  * distributed under the License is distributed on an "AS IS" BASIS,
  14.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15.  * See the License for the specific language governing permissions and
  16.  * limitations under the License.
  17.  */
  18. package org.apache.hadoop.eclipse.actions;
  19. import java.util.logging.Logger;
  20. import org.apache.hadoop.eclipse.NewDriverWizard;
  21. import org.apache.hadoop.eclipse.NewMapperWizard;
  22. import org.apache.hadoop.eclipse.NewReducerWizard;
  23. import org.eclipse.jface.action.Action;
  24. import org.eclipse.jface.viewers.StructuredSelection;
  25. import org.eclipse.jface.window.Window;
  26. import org.eclipse.jface.wizard.WizardDialog;
  27. import org.eclipse.ui.INewWizard;
  28. import org.eclipse.ui.IWorkbench;
  29. import org.eclipse.ui.PlatformUI;
  30. import org.eclipse.ui.cheatsheets.ICheatSheetAction;
  31. import org.eclipse.ui.cheatsheets.ICheatSheetManager;
  32. /**
  33.  * Action to open a new MapReduce Class.
  34.  */
  35. public class OpenNewMRClassWizardAction extends Action implements
  36.     ICheatSheetAction {
  37.   static Logger log = Logger.getLogger(OpenNewMRClassWizardAction.class
  38.       .getName());
  39.   public void run(String[] params, ICheatSheetManager manager) {
  40.     if ((params != null) && (params.length > 0)) {
  41.       IWorkbench workbench = PlatformUI.getWorkbench();
  42.       INewWizard wizard = getWizard(params[0]);
  43.       wizard.init(workbench, new StructuredSelection());
  44.       WizardDialog dialog = new WizardDialog(PlatformUI.getWorkbench()
  45.           .getActiveWorkbenchWindow().getShell(), wizard);
  46.       dialog.create();
  47.       dialog.open();
  48.       // did the wizard succeed ?
  49.       notifyResult(dialog.getReturnCode() == Window.OK);
  50.     }
  51.   }
  52.   private INewWizard getWizard(String typeName) {
  53.     if (typeName.equals("Mapper")) {
  54.       return new NewMapperWizard();
  55.     } else if (typeName.equals("Reducer")) {
  56.       return new NewReducerWizard();
  57.     } else if (typeName.equals("Driver")) {
  58.       return new NewDriverWizard();
  59.     } else {
  60.       log.severe("Invalid Wizard requested");
  61.       return null;
  62.     }
  63.   }
  64. }