Package com.levigo.jadice.web.client.ui
Interface Bar
- All Superinterfaces:
com.google.gwt.user.client.ui.IsWidget
- All Known Implementing Classes:
AbstractBar,HorizontalToolbar,HorizontalToolbarSubmenu,JadiceSubmenuButton,MenuBar,Statusbar,ToolbarSubmenu,VerticalToolbar,VerticalToolbarSubmenu
public interface Bar
extends com.google.gwt.user.client.ui.IsWidget
The Basic parts of a Toolbar
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoidadd(com.google.gwt.user.client.ui.IsWidget widget) Add a Widget to the Toolbar When a JadiceButton has been added, it will be managed.voidaddLast(com.google.gwt.user.client.ui.IsWidget widget) Add a Widget to the Toolbar AFTER the PlaceHolder When a JadiceButton has been added, it will be managed.voidAdds a Separator to separate ButtonGroupsMethods inherited from interface com.google.gwt.user.client.ui.IsWidget
asWidget
-
Method Details
-
add
void add(com.google.gwt.user.client.ui.IsWidget widget) Add a Widget to the Toolbar When a JadiceButton has been added, it will be managed.- Parameters:
widget- the Widget to add
-
addLast
void addLast(com.google.gwt.user.client.ui.IsWidget widget) Add a Widget to the Toolbar AFTER the PlaceHolder When a JadiceButton has been added, it will be managed.- Parameters:
widget- the Widget to add
-
addSeparator
void addSeparator()Adds a Separator to separate ButtonGroups
-