From 4cd4ffb2771ea2d133b30273b1ffea0fef6b4552 Mon Sep 17 00:00:00 2001
From: kenneth_suter <kenneth_suter@localhost>
Date: Tue, 17 Apr 2007 20:23:12 +0000
Subject: [PATCH] This commit introduces preliminary versions of the upgrader tool's GUI wizard panels.  Effort has been made to make the panels conform to the design at

---
 opends/src/quicksetup/org/opends/quicksetup/Step.java |   15 ++++++++++-----
 1 files changed, 10 insertions(+), 5 deletions(-)

diff --git a/opends/src/quicksetup/org/opends/quicksetup/Step.java b/opends/src/quicksetup/org/opends/quicksetup/Step.java
index 5569240..aa47899 100644
--- a/opends/src/quicksetup/org/opends/quicksetup/Step.java
+++ b/opends/src/quicksetup/org/opends/quicksetup/Step.java
@@ -39,26 +39,31 @@
    * Welcome step for the installation.
    */
   WELCOME("welcome-step"),
+
+  /**
+   * Confirmation panel for the uninstallation.
+   */
+  CONFIRM_UNINSTALL("confirm-uninstall-step"),
+
   /**
    * Server Settings step (path, port, etc.).
    */
   SERVER_SETTINGS("server-settings-step"),
+
   /**
    * Data Options panel (suffix dn, LDIF path, etc.).
    */
   DATA_OPTIONS("data-options-step"),
+
   /**
    * Review panel for the install.
    */
   REVIEW("review-step"),
+
   /**
    * Progress panel.
    */
-  PROGRESS("progress-step"),
-  /**
-   * Confirmation panel for the uninstallation.
-   */
-  CONFIRM_UNINSTALL("confirm-uninstall-step");
+  PROGRESS("progress-step");
 
   private String msgKey;
 

--
Gitblit v1.10.0