Package | Description |
---|---|
bibliothek.gui.dock.common |
A set of classes that can be used to create basic applications.
|
bibliothek.gui.dock.common.intern |
Classes and interfaces used internally.
|
Modifier and Type | Method and Description |
---|---|
static EnableableItem |
EnableableItem.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EnableableItem[] |
EnableableItem.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
static int |
EnableableItem.add(int flags,
EnableableItem item)
Adds
item to the flags and returns a new flag. |
static boolean |
EnableableItem.isEnabled(int flags,
EnableableItem item)
Tells whether the
flags , which was created by add(int, EnableableItem) and
remove(int, EnableableItem) , contains item . |
static int |
EnableableItem.remove(int flags,
EnableableItem item)
Removes
item from flags and returns a new flag. |
Modifier and Type | Method and Description |
---|---|
boolean |
AbstractCDockable.isEnabled(EnableableItem item) |
boolean |
CDockable.isEnabled(EnableableItem item)
Tells whether a part of this dockable is enabled.
|
void |
AbstractCDockable.setEnabled(EnableableItem item,
boolean enabled)
Enables or disables a part of this dockable.
|