Package com.instantiations.installer.core.steps

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


  /**
   * Create a step to warn the user if any selected Eclipse installations are
   * Eclipse 3.4 or greater, in which case they should use an update site.
   */
  protected void shouldUseUpdateSiteStep() {
    final ScrollablePromptUserStep step = new ScrollablePromptUserStep(installer) {

      private EclipseInstallation[] newerEclipses;

      public boolean canExecute() {
        IProductVersion V34 = new EclipseVersion(3, 4, 0, null);
View Full Code Here


   * workspaces that are currently being used.
   *
   * @return the step (not <code>null</code>)
   */
  protected ScrollablePromptUserStep checkEclipseRunning() {
    final ScrollablePromptUserStep step = new ScrollablePromptUserStep(installer) {

      private EclipseInstallation[] runningEclipses;

      public boolean canExecute() {
        List running = new ArrayList();
View Full Code Here

TOP

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

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.