Package org.flexdock.docking.event
Interface DockingListener
-
- All Superinterfaces:
java.util.EventListener
- All Known Subinterfaces:
Dockable,DockingPort
- All Known Implementing Classes:
AbstractDockable,DefaultDockingPort,DockableComponentWrapper,DockingListener.Stub,DockingStateListener,FloatingDockingPort,FloatPolicyManager,View,Viewport
public interface DockingListener extends java.util.EventListener- Author:
- Kevin Duffey, Christopher Butler
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classDockingListener.Stub
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddockingCanceled(DockingEvent evt)Fired when docking of aDockableis canceled during the operation.voiddockingComplete(DockingEvent evt)Fired when docking of aDockablehas completed.voiddragStarted(DockingEvent evt)Fired when the dragging of aDockablehas begun.voiddropStarted(DockingEvent evt)Fired when the dropping of aDockablehas begun at the release of a drag-operation.voidundockingComplete(DockingEvent evt)voidundockingStarted(DockingEvent evt)
-
-
-
Method Detail
-
dockingComplete
void dockingComplete(DockingEvent evt)
Fired when docking of aDockablehas completed.- Parameters:
evt- theDockingEventevent which provides the source Dockable, the old DockingPort and the new DockingPort
-
dockingCanceled
void dockingCanceled(DockingEvent evt)
Fired when docking of aDockableis canceled during the operation.- Parameters:
evt- theDockingEventevent which provides the source Dockable, the old DockingPort and the new DockingPort
-
dragStarted
void dragStarted(DockingEvent evt)
Fired when the dragging of aDockablehas begun.- Parameters:
evt- theDockingEventevent which provides the source Dockable, the old DockingPort and the new DockingPort
-
dropStarted
void dropStarted(DockingEvent evt)
Fired when the dropping of aDockablehas begun at the release of a drag-operation.- Parameters:
evt- theDockingEventevent which provides the source Dockable, the old DockingPort and the new DockingPort
-
undockingComplete
void undockingComplete(DockingEvent evt)
-
undockingStarted
void undockingStarted(DockingEvent evt)
-
-