Interface WizardView
-
- All Superinterfaces:
org.uberfire.client.mvp.HasPresenter<AbstractWizard>,com.google.gwt.user.client.ui.IsWidget,org.uberfire.client.mvp.UberView<AbstractWizard>
- All Known Implementing Classes:
WizardViewImpl
public interface WizardView extends org.uberfire.client.mvp.UberView<AbstractWizard>
View and Presenter definitions for the generic Wizard
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidhide()Hide the WizardvoidselectPage(int page)Select a pagevoidsetBodyWidget(com.google.gwt.user.client.ui.Widget w)Set the Widget to display in the body panel of the generic WizardvoidsetCompletionStatus(boolean isComplete)The state (completed, not completed) of the whole Wizard has changedvoidsetPageCompletionState(int pageIndex, boolean isComplete)The state (completed, not completed) of a page has changed.voidsetPageTitles(List<WizardPage> pages)The individual page titlesvoidsetPreferredHeight(int height)Set the body panel preferred heightvoidsetPreferredWidth(int width)Set the body panel preferred widthvoidsetTitle(String title)The title for the Wizardvoidshow()Show the Wizard
-
-
-
Method Detail
-
show
void show()
Show the Wizard
-
setTitle
void setTitle(String title)
The title for the Wizard- Parameters:
title-
-
setPageTitles
void setPageTitles(List<WizardPage> pages)
The individual page titles- Parameters:
pages-
-
selectPage
void selectPage(int page)
Select a page- Parameters:
page-
-
setBodyWidget
void setBodyWidget(com.google.gwt.user.client.ui.Widget w)
Set the Widget to display in the body panel of the generic Wizard- Parameters:
w-
-
setPreferredHeight
void setPreferredHeight(int height)
Set the body panel preferred height- Parameters:
height-
-
setPreferredWidth
void setPreferredWidth(int width)
Set the body panel preferred width- Parameters:
width-
-
setPageCompletionState
void setPageCompletionState(int pageIndex, boolean isComplete)The state (completed, not completed) of a page has changed.- Parameters:
pageIndex-isComplete-
-
setCompletionStatus
void setCompletionStatus(boolean isComplete)
The state (completed, not completed) of the whole Wizard has changed- Parameters:
isComplete-
-
hide
void hide()
Hide the Wizard
-
-