Uses of Class
org.vostok.vaadin.addon.toolbar.Toolbar.BANK

Packages that use Toolbar.BANK
org.vostok.vaadin.addon.toolbar   
 

Uses of Toolbar.BANK in org.vostok.vaadin.addon.toolbar
 

Methods in org.vostok.vaadin.addon.toolbar that return Toolbar.BANK
static Toolbar.BANK Toolbar.BANK.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Toolbar.BANK[] Toolbar.BANK.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in org.vostok.vaadin.addon.toolbar with parameters of type Toolbar.BANK
 com.vaadin.ui.Button Toolbar.addButton(java.lang.String caption, java.lang.String description, java.lang.Object style, com.vaadin.ui.Button.ClickListener listener, Toolbar.BANK location)
          Build and add a new button.
 com.vaadin.ui.Button Toolbar.addButton(java.lang.String caption, java.lang.String description, java.lang.Object style, Toolbar.BANK location)
          add a new button
 com.vaadin.ui.Component Toolbar.addComponent(com.vaadin.ui.Component component, Toolbar.BANK location)
          Add a new component to the toolbar.
 com.vaadin.ui.Label Toolbar.addLabel(java.lang.String caption, java.lang.String style, Toolbar.BANK location)
          add a new label to the toolbar
 com.vaadin.ui.Component Toolbar.addSeparator(Toolbar.BANK location)
          add a new vertical separator. default look and feel depends on css.
 com.vaadin.ui.Component Toolbar.getComponent(int index, Toolbar.BANK location)
          return component at index index from bank location if comonent can be found, return null
 void Toolbar.removeComponent(int index, Toolbar.BANK location)
          remove component at index index from bank location
if component does't exist, does nothing.
 void Toolbar.setEnable(int index, Toolbar.BANK location, boolean enable)
          a convenience method to call Component.setEnable for component at index index from bank location
if component does't exist, does nothing.