Package com.instantiations.installer.core.steps

Examples of com.instantiations.installer.core.steps.ChooseEclipseStep


   * installations to which this product will be linked.
   *
   * @return the install step (not <code>null</code>)
   */
  protected ChooseEclipseStep chooseEclipseStep() {
    ChooseEclipseStep step = new ChooseEclipseStep(installer);
    initStep(step, "LinkToEclipse");
    step.setLocator(new EclipseLocator(options) {
      protected EclipseInstallation[] findLinkedUnsorted() {
        File rootInstallDir = new File(options.getString(InstallOptions.OPTION_INSTALL_DIR));
        return findLinkedEclipseInstallations(rootInstallDir);
      }
      public void scan(final IProductLocatorListener listener) {
View Full Code Here


  /**
   * Filter the list of Eclipse installations generated by the superclass
   */
  protected ChooseEclipseStep chooseEclipseStep() {
    ChooseEclipseStep step = super.chooseEclipseStep();
    step.setCompatibility("[${installer_target_versions_low}.0,${installer_target_versions_high}.0)");
    return step;
  }
View Full Code Here

TOP

Related Classes of com.instantiations.installer.core.steps.ChooseEclipseStep

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.