| File was renamed from opends/src/quicksetup/org/opends/quicksetup/event/UninstallProgressUpdateListener.java |
| | |
| | | * 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(); |
| | | |
| | | } |