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/ui/ConfirmUninstallPanel.java | 27 ++++++++++-----------------
1 files changed, 10 insertions(+), 17 deletions(-)
diff --git a/opends/src/quicksetup/org/opends/quicksetup/ui/ConfirmUninstallPanel.java b/opends/src/quicksetup/org/opends/quicksetup/ui/ConfirmUninstallPanel.java
index 7245fd9..12231a9 100644
--- a/opends/src/quicksetup/org/opends/quicksetup/ui/ConfirmUninstallPanel.java
+++ b/opends/src/quicksetup/org/opends/quicksetup/ui/ConfirmUninstallPanel.java
@@ -27,25 +27,16 @@
package org.opends.quicksetup.ui;
-import java.awt.Component;
-import java.awt.GridBagConstraints;
-import java.awt.GridBagLayout;
+import org.opends.quicksetup.CurrentInstallStatus;
+import org.opends.quicksetup.util.Utils;
+
+import javax.swing.*;
+import javax.swing.border.EmptyBorder;
+import java.awt.*;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Set;
-import javax.swing.Box;
-import javax.swing.DefaultListModel;
-import javax.swing.JCheckBox;
-import javax.swing.JList;
-import javax.swing.JPanel;
-import javax.swing.JScrollPane;
-import javax.swing.border.EmptyBorder;
-
-import org.opends.quicksetup.CurrentInstallStatus;
-import org.opends.quicksetup.installer.FieldName;
-import org.opends.quicksetup.util.Utils;
-
/**
* This is the panel displayed when the user is uninstalling Open DS. It is
* basically a panel with the text informing of the consequences of uninstalling
@@ -65,13 +56,15 @@
/**
* The constructor of this class.
+ * @param application Application this panel represents
* @param installStatus the object describing the current installation status.
*
*/
- public ConfirmUninstallPanel(CurrentInstallStatus installStatus)
+ public ConfirmUninstallPanel(GuiApplication application,
+ CurrentInstallStatus installStatus)
{
+ super(application);
this.installStatus = installStatus;
- createLayout();
}
/**
--
Gitblit v1.10.0