Package com.instantiations.installer.core.steps

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


   * during the installation that need to be brought to the user's attention.
   *
   * @return the install step (not <code>null</code>)
   */
  protected ShowWarningsStep installResultStep() {
    final ShowWarningsStep step = new ShowWarningsStep(installer) {
      public boolean canBack() {
        return false;
      }
    };
    step.setTitle("Warning");
    step.setDescription("Installation program failed to perform the following operations:");
    installer.add(step);
    return step;
  }
View Full Code Here

TOP

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

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.