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

Examples of at.bestsolution.efxclipse.tooling.pde.ui.wizard.model.BundleProjectData


public class NewBundleWizard extends Wizard implements INewWizard {
  private BundleProjectData data;
 
  @Override
  public void init(IWorkbench workbench, IStructuredSelection selection) {
    data = new BundleProjectData();
    data.setTychoIntegration(true);
    data.setVersion("1.0.0.qualifier");
  }
View Full Code Here


public class NewMediaProjectWizard extends Wizard implements INewWizard {
  private BundleProjectData data;
 
  public NewMediaProjectWizard() {
    this.data = new BundleProjectData();
    this.data.setVersion("1.0.0.qualifier");
  }
View Full Code Here

TOP

Related Classes of at.bestsolution.efxclipse.tooling.pde.ui.wizard.model.BundleProjectData

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.