Package adams.gui.wizard
Interface PageCheck<T extends AbstractWizardPage>
-
- Type Parameters:
T
- the type of page
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
AbstractDatabaseConnectionPage.DatabaseConnectionPageCheck
,DummyPageCheck
public interface PageCheck<T extends AbstractWizardPage> extends Serializable
Interface for classes that check whether a page has been completed.- Version:
- $Revision$
- Author:
- fracpete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
checkPage(T page)
Checks the page.
-
-
-
Method Detail
-
checkPage
boolean checkPage(T page)
Checks the page.- Parameters:
page
- the page to check- Returns:
- true if check passed
-
-