Package adams.gui.wizard
Interface ProceedAction<C extends AbstractWizardPage,N extends AbstractWizardPage>
-
- Type Parameters:
C
- the type of the current pageN
- the type of the next page
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
DummyProceedAction
public interface ProceedAction<C extends AbstractWizardPage,N extends AbstractWizardPage> extends Serializable
Interface for action classes that get called when a user proceeds to the next page.- Version:
- $Revision: 8372 $
- Author:
- fracpete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onProceed(C currPage, N nextPage)
Performs the action associated with proceeding.
-