Examples of PluginReference


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

        return result.toArray(new IPluginReference[result.size()]);
    }

    private PluginReference asPluginInReference(
            String bundleId) {
        return new PluginReference(bundleId, null, 0);
    }
View Full Code Here

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

        return result.toArray(new IPluginReference[result.size()]);
    }

    private PluginReference asPluginInReference(
            String bundleId) {
        return new PluginReference(bundleId, null, 0);
    }
View Full Code Here

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

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

  /* (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

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

    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

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

  }
 
  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

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

    }
  }
 
  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

Examples of org.jnode.plugin.PluginReference

                    System.getProperty("os.version") : plugin.getPluginVersion();
            try {
                PluginManager mgr = InitialNaming.lookup(PluginManager.NAME);
                PluginRegistry reg = mgr.getRegistry();
                if (reg.getPluginDescriptor(id) == null) {
                    reg.loadPlugin(mgr.getLoaderManager(), new PluginReference(id, new Version(ver)), true);
                }
            } catch (Exception ex) {
                System.out.println(ex.getMessage());
                throw new TestRunnerException(
                        "Cannot load plugin '" + plugin.getPluginId() + "/" + ver + "'", ex);
View Full Code Here

Examples of org.jnode.plugin.PluginReference

        final String pluginIdentifier = getAttribute(e, "plugin", true);
        String version = getAttribute(e, "version", false);
        if (version == null) {
            version = plugin.getVersion().toString();
        }
        reference = new PluginReference(pluginIdentifier, new Version(version));
    }
View Full Code Here

Examples of org.jnode.plugin.PluginReference

            throw new IllegalArgumentException("pluginId is null");
        }
        if (pluginVersion == null) {
            throw new IllegalArgumentException("pluginVersion is null");
        }
        reference = new PluginReference(pluginIdentifier, pluginVersion);
    }
View Full Code Here
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.