Interface WorkbenchToolBarPresenter.View
-
- All Superinterfaces:
com.google.gwt.user.client.ui.IsWidget
- Enclosing class:
- WorkbenchToolBarPresenter
public static interface WorkbenchToolBarPresenter.View extends com.google.gwt.user.client.ui.IsWidgetView contract for an UberFire toolbar view.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddToolBar(org.uberfire.workbench.model.toolbar.ToolBar toolBar)Adds a set of Tool Bar items to the view.intgetHeight()Returns the pixel height of this toolbar.voidhide()Makes this toolbar invisible.voidremoveToolBar(org.uberfire.workbench.model.toolbar.ToolBar toolBar)Removes a set of Tool Bar items from the view.voidshow()Makes this toolbar visible.
-
-
-
Method Detail
-
addToolBar
void addToolBar(org.uberfire.workbench.model.toolbar.ToolBar toolBar)
Adds a set of Tool Bar items to the view. The Presenter has already verified that the user has permission to see the items in the given toolbar.
-
removeToolBar
void removeToolBar(org.uberfire.workbench.model.toolbar.ToolBar toolBar)
Removes a set of Tool Bar items from the view. Has no effect if the items were not already in this view.
-
getHeight
int getHeight()
Returns the pixel height of this toolbar.
-
hide
void hide()
Makes this toolbar invisible.
-
show
void show()
Makes this toolbar visible.
-
-