mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

jvergara
11.34.2006 c40f084a6d3e897785f2fbff3ddb97545644cddc
opends/src/quicksetup/org/opends/quicksetup/event/InstallProgressUpdateEvent.java
File was renamed from opends/src/quicksetup/org/opends/quicksetup/event/ProgressUpdateEvent.java
@@ -35,11 +35,11 @@
 * 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).
 * objects and are notified to the objects implementing
 * InstallProgressUpdateListener (QuickSetup object).
 *
 */
public class ProgressUpdateEvent
public class InstallProgressUpdateEvent
{
  private InstallProgressStep step;
@@ -50,7 +50,7 @@
  private String newLogs;
  /**
   * Constructor of the ProgressUpdateEvent.
   * Constructor of the InstallProgressUpdateEvent.
   * @param step the InstallProgressStep object describing in which step
   * of the installation we are (configuring server, starting server, etc.)
   * @param progressRatio the integer that specifies which percentage of
@@ -59,7 +59,7 @@
   * current installation progress.
   * @param newLogs the new log messages that we have for the installation.
   */
  public ProgressUpdateEvent(InstallProgressStep step,
  public InstallProgressUpdateEvent(InstallProgressStep step,
      Integer progressRatio, String currentPhaseSummary, String newLogs)
  {
    this.step = step;