From 43e9c7913fc664b725e167090fe6d389a4558315 Mon Sep 17 00:00:00 2001
From: jvergara <jvergara@localhost>
Date: Fri, 08 Jun 2007 14:43:45 +0000
Subject: [PATCH] The following commit adds all the code necessary to be able to configure replication using the setup.
---
opends/src/quicksetup/org/opends/quicksetup/ui/ReviewPanel.java | 12 +++++++-----
1 files changed, 7 insertions(+), 5 deletions(-)
diff --git a/opends/src/quicksetup/org/opends/quicksetup/ui/ReviewPanel.java b/opends/src/quicksetup/org/opends/quicksetup/ui/ReviewPanel.java
index 3482c67..ae414cc 100644
--- a/opends/src/quicksetup/org/opends/quicksetup/ui/ReviewPanel.java
+++ b/opends/src/quicksetup/org/opends/quicksetup/ui/ReviewPanel.java
@@ -68,7 +68,7 @@
addVerticalGlue(panel);
- JCheckBox chk = getCheckBox();
+ JComponent chk = getBottomComponent();
if (chk != null) {
gbc.insets.top = UIFactory.TOP_INSET_PRIMARY_FIELD;
gbc.weighty = 0.0;
@@ -80,9 +80,11 @@
}
/**
- * Returns the start server check box.
- * If it does not exist creates the start server check box.
- * @return the start server check box.
+ * Returns the component that will placed at the bottom of the panel.
+ * In the case of the installer and the uninstaller this is basically the
+ * start server check box.
+ * If it does not exist creates the component.
+ * @return the component that will placed at the bottom of the panel.
*/
- protected abstract JCheckBox getCheckBox();
+ protected abstract JComponent getBottomComponent();
}
--
Gitblit v1.10.0