Class Statusbar

All Implemented Interfaces:
com.google.gwt.user.client.ui.IsWidget, Bar

public class Statusbar extends HorizontalToolbar
  • Constructor Details

    • Statusbar

      public Statusbar()
    • Statusbar

      public Statusbar(BarStyle style)
    • Statusbar

      public Statusbar(BarStyle style, String debugId)
  • Method Details

    • add

      public void add(com.google.gwt.user.client.ui.IsWidget widget)
      Description copied from interface: Bar
      Add a Widget to the Toolbar When a JadiceButton has been added, it will be managed.
      Specified by:
      add in interface Bar
      Overrides:
      add in class AbstractBar
      Parameters:
      widget - the Widget to add
    • addLast

      public void addLast(com.google.gwt.user.client.ui.IsWidget widget)
      Description copied from interface: Bar
      Add a Widget to the Toolbar AFTER the PlaceHolder When a JadiceButton has been added, it will be managed.
      Specified by:
      addLast in interface Bar
      Overrides:
      addLast in class AbstractBar
      Parameters:
      widget - the Widget to add
    • getSnapIn

      public <T extends SnapIn> T getSnapIn(Class<T> snapInClass)
      Returns a particular instance of SnapIn selected by its class contained in this status bar. WARN: No Interfaces are supported here (limited GWT-Reflection). Only SuperClasses!
      Type Parameters:
      T - A type that extends SnapIn.
      Parameters:
      snapInClass - The class of the SnapIn.
      Returns:
      An instance of SnapIn contained in this status bar or null, if not contained.