public interface Wizard
Modifier and Type | Method and Description |
---|---|
void |
close()
The Wizard has been closed
|
void |
complete()
The Wizard has been completed
|
List<WizardPage> |
getPages()
Provide a list of pages
|
com.google.gwt.user.client.ui.Widget |
getPageWidget(int pageNumber)
Return the widget for a particular page
|
int |
getPreferredHeight()
The preferred height of the page
|
int |
getPreferredWidth()
The preferred width of the page
|
String |
getTitle()
Provide a title
|
void |
isComplete(Callback<Boolean> callback)
Is the Wizard complete; i.e. has all the necessary information for all
pages in the Wizard been captured.
|
void |
pageSelected(int pageNumber)
A page has been selected from the UI
|
void |
start()
Start the Wizard
|
void start()
List<WizardPage> getPages()
com.google.gwt.user.client.ui.Widget getPageWidget(int pageNumber)
pageNumber
- The index of of the pagevoid pageSelected(int pageNumber)
pageNumber
- String getTitle()
int getPreferredHeight()
int getPreferredWidth()
void isComplete(Callback<Boolean> callback)
callback
- True if the page is completevoid complete()
void close()
Copyright © 2012–2020 JBoss by Red Hat. All rights reserved.