Package org.eclipse.pde.ui.templates

Examples of org.eclipse.pde.ui.templates.PluginReference


  protected void updateModel(IProgressMonitor monitor) throws CoreException {
  }

  public IPluginReference[] getDependencies(String schemaVersion) {
    IPluginReference[] dep = new IPluginReference[2];
    dep[0] = new PluginReference("at.bestsolution.efxclipse.runtime.jemmy", null, 0); //$NON-NLS-1$
    dep[1] = new PluginReference("org.junit4", null, 0); //$NON-NLS-1$
   
    return dep;
  }
View Full Code Here


  /* (non-Javadoc)
   * @see org.eclipse.pde.ui.templates.AbstractTemplateSection#getDependencies(java.lang.String)
   */
  public IPluginReference[] getDependencies(String schemaVersion) {
    IPluginReference[] dep = new IPluginReference[3];
    dep[0] = new PluginReference("org.eclipse.core.runtime", null, 0); //$NON-NLS-1$
    dep[1] = new PluginReference("org.eclipse.ui", null, 0); //$NON-NLS-1$
    dep[2] = new PluginReference("at.bestsolution.efxclipse.runtime.workbench3", null, 0); //$NON-NLS-1$
    return dep;
  }
View Full Code Here

    updateBuildModel();
  }
 
  public IPluginReference[] getDependencies(String schemaVersion) {
    IPluginReference[] dep = new IPluginReference[1];
    dep[0] = new PluginReference("org.eclipse.core.runtime", null, 0); //$NON-NLS-1$
   
    return dep;
  }
View Full Code Here

  }
 
  public IPluginReference[] getDependencies(String schemaVersion) {
    ArrayList<IPluginReference> result = new ArrayList<IPluginReference>();
    if (schemaVersion != null)
      result.add(new PluginReference("org.eclipse.core.runtime", null, 0)); //$NON-NLS-1$
    result.add(new PluginReference("org.eclipse.ui", null, 0)); //$NON-NLS-1$
    result.add(new PluginReference("at.bestsolution.efxclipse.runtime.workbench3", null, 0));
   
//    if( getBooleanOption(KEY_SHIP_WITH_JAVAFX) ) {
//      result.add(new PluginReference("javafx.osgi", null, 0));
//    }
   
View Full Code Here

    }
  }
 
  public IPluginReference[] getDependencies(String schemaVersion) {
    IPluginReference[] dep = new IPluginReference[3];
    dep[0] = new PluginReference("org.eclipse.equinox.app", null, 0); //$NON-NLS-1$
    dep[1] = new PluginReference("org.eclipse.osgi", null, 0); //$NON-NLS-1$
    dep[2] = new PluginReference("at.bestsolution.efxclipse.runtime.application", null, 0); //$NON-NLS-1$
   
    return dep;
  }
View Full Code Here

TOP

Related Classes of org.eclipse.pde.ui.templates.PluginReference

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.