Package | Description |
---|---|
bibliothek.gui.dock.action |
The components dealing with the logic of
DockAction s. |
bibliothek.gui.dock.action.actions |
Contains a set of different
DockAction s
and supporting classes.The actions in this package will create views, which show Icon s,
text, tooltips and other gimmicks. |
bibliothek.gui.dock.event |
Listeners, adapters and events used in the whole framework.
A Listener is added to some object that needs to be observed, the Listener will be informed whenever the observed object changes. An Adapter is an implementation of a Listener, but the methods of an Adapter are empty. An Event is an object carrying information from an observed object to a Listener. |
bibliothek.gui.dock.themes.basic.action |
Elements handling the view of
DockAction s.They way from a DockAction to its view normally involves four objects:
The DockAction itself, providing the basic set of properties
A handler listening to changes of the
action and forwarding the changes to the model. |
Modifier and Type | Method and Description |
---|---|
void |
StandardDockAction.addDockActionListener(StandardDockActionListener listener)
Adds a listener to this DockAction.
|
void |
StandardDockAction.removeDockActionListener(StandardDockActionListener listener)
Removes a listener from this DockStation.
|
Modifier and Type | Field and Description |
---|---|
protected List<StandardDockActionListener> |
AbstractStandardDockAction.listeners
The listeners that are registered by this action
|
Modifier and Type | Method and Description |
---|---|
void |
AbstractStandardDockAction.addDockActionListener(StandardDockActionListener listener) |
void |
AbstractStandardDockAction.removeDockActionListener(StandardDockActionListener listener) |
Modifier and Type | Class and Description |
---|---|
class |
DockActionAdapter
An abstract implementation of
StandardDockActionListener . |
Modifier and Type | Class and Description |
---|---|
protected class |
BasicHandler.Listener
A listener to the action of the enclosing handler.
|