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

kenneth_suter
29.09.2007 7ae21709bb6dbdc092052acb5098bfa5cb316d9e
opends/src/quicksetup/org/opends/quicksetup/ProgressStep.java
File was renamed from opends/src/quicksetup/org/opends/quicksetup/event/UninstallProgressUpdateListener.java
@@ -25,20 +25,25 @@
 *      Portions Copyright 2006-2007 Sun Microsystems, Inc.
 */
package org.opends.quicksetup.event;
package org.opends.quicksetup;
/**
 * Interface that implement the objects that want to receive notifications of
 * updates in the uninstallation progress.
 *
 * Interface describing the different installation steps in which we can
 * be.
 */
public interface UninstallProgressUpdateListener
{
public interface ProgressStep {
  /**
   * Method called when an update in the uninstallation progress occurs.
   *
   * @param ev the UninstallProgressUpdateEvent describing the update that
   * occurred in the installation progress.
   * Indicates whether this Progress step is a final step.
   * @return true if this is a final step
   */
  public void progressUpdate(UninstallProgressUpdateEvent ev);
  boolean isLast();
  /**
   * Indicates whether this Progress step is arrived at
   * through an error in the application.
   * @return true if this is an error step
   */
  boolean isError();
}