Uses of Class
bibliothek.gui.dock.station.stack.tab.MenuLineLayoutOrder.Item

Packages that use MenuLineLayoutOrder.Item
bibliothek.gui.dock.station.stack.tab This package contains a generic implementation of a "tabbed-pane". 
 

Uses of MenuLineLayoutOrder.Item in bibliothek.gui.dock.station.stack.tab
 

Methods in bibliothek.gui.dock.station.stack.tab that return MenuLineLayoutOrder.Item
 MenuLineLayoutOrder.Item MenuLineLayoutOrder.getFirst()
          Gets the first item to show.
 MenuLineLayoutOrder.Item MenuLineLayoutOrder.getSecond()
          Gets the second item to show.
 MenuLineLayoutOrder.Item MenuLineLayoutOrder.getThird()
          Gets the third item to show.
static MenuLineLayoutOrder.Item MenuLineLayoutOrder.Item.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static MenuLineLayoutOrder.Item[] MenuLineLayoutOrder.Item.values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 

Methods in bibliothek.gui.dock.station.stack.tab that return types with arguments of type MenuLineLayoutOrder.Item
 Iterator<MenuLineLayoutOrder.Item> MenuLineLayoutOrder.iterator()
           
 

Methods in bibliothek.gui.dock.station.stack.tab with parameters of type MenuLineLayoutOrder.Item
 float MenuLineLayoutOrder.getAlignment(MenuLineLayoutOrder.Item item)
          Gets the alignment of item.
 float MenuLineLayoutOrder.getFill(MenuLineLayoutOrder.Item item)
          Gets the fill ratio of item.
 float MenuLineLayoutOrder.getWeight(MenuLineLayoutOrder.Item item)
          Gets the weight of item.
 void MenuLineLayoutOrder.setAlignment(MenuLineLayoutOrder.Item item, float alignment)
          Sets the alignment of item.
 void MenuLineLayoutOrder.setConstraints(MenuLineLayoutOrder.Item item, float weight, float alignment, float fill)
          A shortcut to call MenuLineLayoutOrder.setAlignment(Item, float), MenuLineLayoutOrder.setWeight(Item, float) and MenuLineLayoutOrder.setFill(Item, float) in one invocation.
 void MenuLineLayoutOrder.setFill(MenuLineLayoutOrder.Item item, float fill)
          Sets the fill ratio of item.
 void MenuLineLayoutOrder.setWeight(MenuLineLayoutOrder.Item item, float weight)
          Sets the weight of item.
 

Constructors in bibliothek.gui.dock.station.stack.tab with parameters of type MenuLineLayoutOrder.Item
MenuLineLayoutOrder(MenuLineLayoutOrder.Item first, MenuLineLayoutOrder.Item second, MenuLineLayoutOrder.Item third)
          Creates a new order.