com.dlsc.flexgantt.swing.layer.system
Interface IDragLayerListener

All Superinterfaces:
java.util.EventListener
All Known Implementing Classes:
Eventline, SimpleEventline

public interface IDragLayerListener
extends java.util.EventListener

A listener that can be attached to instances of DragLayer. Any oberserver that implements this interface will be informed about the drag & drop operations that are being informed inside the layer.

Since:
1.0
Author:
Dirk Lemmermann
See Also:
DragLayer.addDragLayerListener(IDragLayerListener)

Method Summary
 void dragging(DragLayerEvent evt)
          Listener callback method that will be invoked when the user starts, executes or finishes drag and drop operations in the drag layer.
 

Method Detail

dragging

void dragging(DragLayerEvent evt)
Listener callback method that will be invoked when the user starts, executes or finishes drag and drop operations in the drag layer.

Parameters:
evt - the event describing the drag operation
Since:
1.0