From c40f084a6d3e897785f2fbff3ddb97545644cddc Mon Sep 17 00:00:00 2001
From: jvergara <jvergara@localhost>
Date: Mon, 11 Dec 2006 15:34:39 +0000
Subject: [PATCH] The following modifications include the comments from Neil and Brian (thanks to both for your help):
---
opends/src/quicksetup/org/opends/quicksetup/event/UninstallProgressUpdateEvent.java | 22 +++++++++++-----------
1 files changed, 11 insertions(+), 11 deletions(-)
diff --git a/opends/src/quicksetup/org/opends/quicksetup/event/ProgressUpdateEvent.java b/opends/src/quicksetup/org/opends/quicksetup/event/UninstallProgressUpdateEvent.java
similarity index 83%
copy from opends/src/quicksetup/org/opends/quicksetup/event/ProgressUpdateEvent.java
copy to opends/src/quicksetup/org/opends/quicksetup/event/UninstallProgressUpdateEvent.java
index f3c0e69..34bdc8b 100644
--- a/opends/src/quicksetup/org/opends/quicksetup/event/ProgressUpdateEvent.java
+++ b/opends/src/quicksetup/org/opends/quicksetup/event/UninstallProgressUpdateEvent.java
@@ -27,21 +27,21 @@
package org.opends.quicksetup.event;
-import org.opends.quicksetup.installer.InstallProgressStep;
+import org.opends.quicksetup.uninstaller.UninstallProgressStep;
/**
- * The event that is generated when there is a change during the installation
+ * The event that is generated when there is a change during the uninstallation
* process (we get a new log message when starting the server, or we finished
* configuring the server for instance).
*
- * In the current implementation this events are generated by the Installer
- * objects and are notified to the objects implementing ProgressUpdateListener
- * (QuickSetup object).
+ * In the current implementation this events are generated by the Uninstaller
+ * object and are notified to the objects implementing
+ * UninstallProgressUpdateListener (QuickSetup object).
*
*/
-public class ProgressUpdateEvent
+public class UninstallProgressUpdateEvent
{
- private InstallProgressStep step;
+ private UninstallProgressStep step;
private Integer progressRatio;
@@ -50,8 +50,8 @@
private String newLogs;
/**
- * Constructor of the ProgressUpdateEvent.
- * @param step the InstallProgressStep object describing in which step
+ * Constructor of the UninstallProgressUpdateEvent.
+ * @param step the UninstallProgressStep object describing in which step
* of the installation we are (configuring server, starting server, etc.)
* @param progressRatio the integer that specifies which percentage of
* the whole installation has been completed.
@@ -59,7 +59,7 @@
* current installation progress.
* @param newLogs the new log messages that we have for the installation.
*/
- public ProgressUpdateEvent(InstallProgressStep step,
+ public UninstallProgressUpdateEvent(UninstallProgressStep step,
Integer progressRatio, String currentPhaseSummary, String newLogs)
{
this.step = step;
@@ -100,7 +100,7 @@
* Gets the current progress step.
* @return the current progress step.
*/
- public InstallProgressStep getProgressStep()
+ public UninstallProgressStep getProgressStep()
{
return step;
}
--
Gitblit v1.10.0