Interface WizardPage
-
- All Superinterfaces:
com.google.gwt.user.client.ui.IsWidget
public interface WizardPage extends com.google.gwt.user.client.ui.IsWidgetA page for a Wizard
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetTitle()Page titlevoidinitialise()Initialise the page with things that don't change between page visitsvoidisComplete(org.uberfire.client.callbacks.Callback<Boolean> callback)Is the page; i.e. has all the necessary information been captured.voidprepareView()Prepare the page before it is displayed with things that can change between page visits
-
-
-
Method Detail
-
getTitle
String getTitle()
Page title- Returns:
-
isComplete
void isComplete(org.uberfire.client.callbacks.Callback<Boolean> callback)
Is the page; i.e. has all the necessary information been captured. What constitutes necessary data is up to the Wizard implementation, but a login page might consider the User ID and Password as necessary.- Parameters:
callback- True if the page is complete
-
initialise
void initialise()
Initialise the page with things that don't change between page visits
-
prepareView
void prepareView()
Prepare the page before it is displayed with things that can change between page visits
-
-