opends/src/quicksetup/org/opends/quicksetup/Step.java
@@ -80,7 +80,12 @@ /** * Progress panel. */ PROGRESS("progress-step"); PROGRESS("progress-step"), /** * Finished panel. */ FINISHED("finished-step"); private String msgKey; @@ -109,5 +114,11 @@ return this == PROGRESS; } /** * {@inheritDoc} */ public boolean isFinishedStep() { return this == FINISHED; } }