NewDriverWizard.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;
  19. import org.eclipse.core.resources.IFile;
  20. import org.eclipse.core.runtime.CoreException;
  21. import org.eclipse.core.runtime.IProgressMonitor;
  22. import org.eclipse.jdt.core.IJavaElement;
  23. import org.eclipse.jdt.internal.ui.wizards.NewElementWizard;
  24. import org.eclipse.jface.operation.IRunnableWithProgress;
  25. import org.eclipse.jface.viewers.IStructuredSelection;
  26. import org.eclipse.ui.INewWizard;
  27. import org.eclipse.ui.IWorkbench;
  28. /**
  29.  * Wizard for creating a new Driver class (a class that runs a MapReduce job).
  30.  * 
  31.  */
  32. public class NewDriverWizard extends NewElementWizard implements INewWizard,
  33.     IRunnableWithProgress {
  34.   private NewDriverWizardPage page;
  35.   /*
  36.    * @Override public boolean performFinish() { }
  37.    */
  38.   public void run(IProgressMonitor monitor) {
  39.     try {
  40.       page.createType(monitor);
  41.     } catch (CoreException e) {
  42.       // TODO Auto-generated catch block
  43.       e.printStackTrace();
  44.     } catch (InterruptedException e) {
  45.       // TODO Auto-generated catch block
  46.       e.printStackTrace();
  47.     }
  48.   }
  49.   public NewDriverWizard() {
  50.     setWindowTitle("New MapReduce Driver");
  51.   }
  52.   @Override
  53.   public void init(IWorkbench workbench, IStructuredSelection selection) {
  54.     super.init(workbench, selection);
  55.     page = new NewDriverWizardPage();
  56.     addPage(page);
  57.     page.setSelection(selection);
  58.   }
  59.   @Override
  60.   /**
  61.    * Performs any actions appropriate in response to the user having pressed the
  62.    * Finish button, or refuse if finishing now is not permitted.
  63.    */
  64.   public boolean performFinish() {
  65.     if (super.performFinish()) {
  66.       if (getCreatedElement() != null) {
  67.         selectAndReveal(page.getModifiedResource());
  68.         openResource((IFile) page.getModifiedResource());
  69.       }
  70.       return true;
  71.     } else {
  72.       return false;
  73.     }
  74.   }
  75.   @Override
  76.   /**
  77.    * 
  78.    */
  79.   protected void finishPage(IProgressMonitor monitor)
  80.       throws InterruptedException, CoreException {
  81.     this.run(monitor);
  82.   }
  83.   @Override
  84.   public IJavaElement getCreatedElement() {
  85.     return page.getCreatedType().getPrimaryElement();
  86.   }
  87. }