Package at.bestsolution.efxclipse.tooling.pde.ui

Source Code of at.bestsolution.efxclipse.tooling.pde.ui.E3ViewPartClassWizard

/*******************************************************************************
* Copyright (c) 2012 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
*     Tom Schindl<tom.schindl@bestsolution.at> - initial API and implementation
*******************************************************************************/
package at.bestsolution.efxclipse.tooling.pde.ui;

import org.eclipse.core.resources.IProject;
import org.eclipse.core.resources.ResourcesPlugin;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.NullProgressMonitor;
import org.eclipse.pde.core.project.IBundleProjectDescription;
import org.eclipse.pde.core.project.IBundleProjectService;
import org.eclipse.pde.core.project.IPackageImportDescription;
import org.eclipse.pde.core.project.IRequiredBundleDescription;

import at.bestsolution.efxclipse.tooling.jdt.ui.internal.wizard.clazz.AbstractNewClassWizard;
import at.bestsolution.efxclipse.tooling.pde.ui.templates.E3ViewPartGenerator;
import at.bestsolution.efxclipse.tooling.ui.wizards.template.IGenerator;
import at.bestsolution.efxclipse.tooling.ui.wizards.template.JDTElement;

public class E3ViewPartClassWizard extends AbstractNewClassWizard<JDTElement> {

  @Override
  public void addPages() {
    addPage(new E3ViewPartClassPage(root,fragment,ResourcesPlugin.getWorkspace().getRoot()));
  }
 
  @Override
  protected IGenerator<JDTElement> getGenerator() {
    return new E3ViewPartGenerator();
  }

  public boolean performFinish() {
    try {
      IBundleProjectService bpService = Activator.getDefault().acquireService(IBundleProjectService.class);
      IProject p = root.getJavaProject().getProject();
     
      if( p.hasNature("org.eclipse.pde.PluginNature") ) {
        IBundleProjectDescription bundleDesc = bpService.getDescription(p);
       
        IRequiredBundleDescription requireDesc = bpService.newRequiredBundle("at.bestsolution.efxclipse.runtime.workbench3", null, false, false);
        IPackageImportDescription importDesc = bpService.newPackageImport("javafx.scene", null, false);
       
        BundleHelper.addRequiredBundleDescriptions(bundleDesc, requireDesc);
        BundleHelper.addPackageImportDescriptions(bundleDesc, importDesc);
       
        bundleDesc.apply(new NullProgressMonitor());
        return super.performFinish();
      } else {
        // TODO Show error that project is not a plugin
        return false;
      }
    } catch (CoreException e) {
      // TODO Auto-generated catch block
      e.printStackTrace();
    }
    return false;
  }
}
TOP

Related Classes of at.bestsolution.efxclipse.tooling.pde.ui.E3ViewPartClassWizard

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.