Package | Description |
---|---|
bibliothek.gui.dock.station.stack.tab |
This package contains a generic implementation of a "tabbed-pane".
|
Modifier and Type | Method and Description |
---|---|
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(java.lang.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 are declared.
|
Modifier and Type | Method and Description |
---|---|
java.util.Iterator<MenuLineLayoutOrder.Item> |
MenuLineLayoutOrder.iterator() |
Modifier and Type | Method and Description |
---|---|
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 . |
Constructor and Description |
---|
MenuLineLayoutOrder(MenuLineLayoutOrder.Item first,
MenuLineLayoutOrder.Item second,
MenuLineLayoutOrder.Item third)
Creates a new order.
|