bibliothek.gui.dock.event
Class DockActionAdapter

java.lang.Object
  extended by bibliothek.gui.dock.event.DockActionAdapter
All Implemented Interfaces:
StandardDockActionListener

public abstract class DockActionAdapter
extends java.lang.Object
implements StandardDockActionListener

An abstract implementation of StandardDockActionListener. All methods of this class are empty. The class can be used instead of StandardDockActionListener, when only a few selected methods have to be implemented.

Author:
Benjamin Sigg

Constructor Summary
DockActionAdapter()
           
 
Method Summary
 void actionDisabledIconChanged(StandardDockAction action, java.util.Set<Dockable> dockables)
          Invoked when the disabled icon of a StandardDockAction has been changed.
 void actionEnabledChanged(StandardDockAction action, java.util.Set<Dockable> dockables)
          Invoked when the enabled-state of a StandardDockAction has been changed.
 void actionIconChanged(StandardDockAction action, java.util.Set<Dockable> dockables)
          Invoked when the icon of a StandardDockAction has been changed.
 void actionRepresentativeChanged(StandardDockAction action, java.util.Set<Dockable> dockables)
          Invoked when the representative-property of a StandardDockAction has been changed.
 void actionTextChanged(StandardDockAction action, java.util.Set<Dockable> dockables)
          Invoked when the text of a StandardDockAction has been changed.
 void actionTooltipTextChanged(StandardDockAction action, java.util.Set<Dockable> dockables)
          Invoked when the tooltip of a StandardDockAction has been changed.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

DockActionAdapter

public DockActionAdapter()
Method Detail

actionEnabledChanged

public void actionEnabledChanged(StandardDockAction action,
                                 java.util.Set<Dockable> dockables)
Description copied from interface: StandardDockActionListener
Invoked when the enabled-state of a StandardDockAction has been changed.

Specified by:
actionEnabledChanged in interface StandardDockActionListener
Parameters:
action - The action whose state is changed
dockables - The Dockables for which the state was changed
See Also:
StandardDockAction.isEnabled(Dockable)

actionIconChanged

public void actionIconChanged(StandardDockAction action,
                              java.util.Set<Dockable> dockables)
Description copied from interface: StandardDockActionListener
Invoked when the icon of a StandardDockAction has been changed.

Specified by:
actionIconChanged in interface StandardDockActionListener
Parameters:
action - The action whose icon is changed
dockables - The Dockables for which the icon was changed
See Also:
StandardDockAction.getIcon(Dockable)

actionDisabledIconChanged

public void actionDisabledIconChanged(StandardDockAction action,
                                      java.util.Set<Dockable> dockables)
Description copied from interface: StandardDockActionListener
Invoked when the disabled icon of a StandardDockAction has been changed.

Specified by:
actionDisabledIconChanged in interface StandardDockActionListener
Parameters:
action - The action whose icon is changed
dockables - The Dockables for which the icon was changed
See Also:
StandardDockAction.getIcon(Dockable)

actionTextChanged

public void actionTextChanged(StandardDockAction action,
                              java.util.Set<Dockable> dockables)
Description copied from interface: StandardDockActionListener
Invoked when the text of a StandardDockAction has been changed.

Specified by:
actionTextChanged in interface StandardDockActionListener
Parameters:
action - The action whose text is changed
dockables - The Dockables for which the text was changed
See Also:
StandardDockAction.getText(Dockable)

actionTooltipTextChanged

public void actionTooltipTextChanged(StandardDockAction action,
                                     java.util.Set<Dockable> dockables)
Description copied from interface: StandardDockActionListener
Invoked when the tooltip of a StandardDockAction has been changed.

Specified by:
actionTooltipTextChanged in interface StandardDockActionListener
Parameters:
action - The action whose tooltip is changed
dockables - The Dockables for which the tooltip was changed
See Also:
StandardDockAction.getTooltipText(Dockable)

actionRepresentativeChanged

public void actionRepresentativeChanged(StandardDockAction action,
                                        java.util.Set<Dockable> dockables)
Description copied from interface: StandardDockActionListener
Invoked when the representative-property of a StandardDockAction has been changed.

Specified by:
actionRepresentativeChanged in interface StandardDockActionListener
Parameters:
action - the action whose property changed
dockables - all the affected Dockables.