From f6bff1e8c31ae6ebfabfdb478771216b9773a3c4 Mon Sep 17 00:00:00 2001
From: kenneth_suter <kenneth_suter@localhost>
Date: Thu, 24 May 2007 00:37:30 +0000
Subject: [PATCH] This commit addresses issue 1599 as well as introduces some other changes suggested by Brian after reviewing the SWAED guidelines:
---
opends/src/quicksetup/org/opends/quicksetup/ui/QuickSetupPanel.java | 18 ++++++++++++++++++
1 files changed, 18 insertions(+), 0 deletions(-)
diff --git a/opends/src/quicksetup/org/opends/quicksetup/ui/QuickSetupPanel.java b/opends/src/quicksetup/org/opends/quicksetup/ui/QuickSetupPanel.java
index d2872bb..c63745a 100644
--- a/opends/src/quicksetup/org/opends/quicksetup/ui/QuickSetupPanel.java
+++ b/opends/src/quicksetup/org/opends/quicksetup/ui/QuickSetupPanel.java
@@ -46,6 +46,8 @@
private GuiApplication application;
+ private QuickSetup quickSetup;
+
/**
* The basic constructor to be called by the subclasses.
* @param application Application this panel represents
@@ -58,6 +60,22 @@
}
/**
+ * Sets the instance of <code>QuickSetup</code> acting as controller.
+ * @param qs QuickSetup instance
+ */
+ void setQuickSetup(QuickSetup qs) {
+ this.quickSetup = qs;
+ }
+
+ /**
+ * Gets the instance of <code>QuickSetup</code> acting as controller.
+ * @return QuickSetup instance
+ */
+ protected QuickSetup getQuickSetup() {
+ return this.quickSetup;
+ }
+
+ /**
* Returns the frame or window containing this panel.
* @return the frame or window containing this panel.
*/
--
Gitblit v1.10.0