com.javadocking.event
Interface DockingListener


public interface DockingListener

This is an interface for classes that want to be informed, when a dockable or child dock is added to a dock, moved in a dock, moved to another dock, or removed from a dock.

They are informed before the docking change starts and after the docking change finished.

Author:
Heidi Rakels.

Method Summary
 void dockingChanged(DockingEvent dockingEvent)
          Invoked whenever a dockable has been added to a dock, moved in a dock, moved to another dock, or removed from a dock.
 void dockingWillChange(DockingEvent dockingEvent)
          Invoked whenever a dockable or child dock is about to be added to a dock, moved in a dock, moved to another dock, or removed from a dock.
 

Method Detail

dockingWillChange

void dockingWillChange(DockingEvent dockingEvent)
Invoked whenever a dockable or child dock is about to be added to a dock, moved in a dock, moved to another dock, or removed from a dock.

Parameters:
dockingEvent - Gives more information about the origin dock, the destination dock, and the object whose docking state changed.

dockingChanged

void dockingChanged(DockingEvent dockingEvent)
Invoked whenever a dockable has been added to a dock, moved in a dock, moved to another dock, or removed from a dock.

Parameters:
dockingEvent - Gives more information about the origin dock, the destination dock, and the object whose docking state changed.