Uses of Class
com.javadocking.event.DockingEvent

Packages that use DockingEvent
com.javadocking.event Contains the classes for the events that are broadcasted when a dockable or child dock is: added to a dock. 
 

Uses of DockingEvent in com.javadocking.event
 

Subclasses of DockingEvent in com.javadocking.event
 class ChildDockEvent
           This kind of event is broad-casted when a child dock is added, moved, or removed from a composite dock.
 class DockableEvent
           This kind of event is broad-casted when a dockable is added to a dock, moved in a dock, moved to another dock, or removed from a dock.
 

Methods in com.javadocking.event with parameters of type DockingEvent
 void DockingListener.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 DockingListener.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.
 void DockingEventSupport.fireDockingChanged(DockingEvent dockingEvent)
          Notifies all listeners that have registered interest for notification on this event type.
 void DockingEventSupport.fireDockingWillChange(DockingEvent dockingEvent)
          Notifies all listeners that have registered interest for notification on this event type.