Example usage for Java java.awt.dnd DragGestureEvent fields, constructors, methods, implement or subclass
The text is from its open source code.
Component | getComponent() Returns the Component associated with this DragGestureEvent . |
int | getDragAction() Returns an int representing the action selected by the user. |
Point | getDragOrigin() Returns a Point in the coordinates of the Component over which the drag originated. |
InputEvent | getTriggerEvent() Returns the initial event that triggered the gesture. |
Iterator | iterator() Returns an Iterator for the events comprising the gesture. |
void | startDrag(Cursor dragCursor, Transferable transferable) Starts the drag operation given the Cursor for this drag operation and the Transferable representing the source data for this drag operation. |
void | startDrag(Cursor dragCursor, Transferable transferable, DragSourceListener dsl) Starts the drag given the initial Cursor to display, the Transferable object, and the DragSourceListener to use. |
void | startDrag(Cursor dragCursor, Image dragImage, Point imageOffset, Transferable transferable, DragSourceListener dsl) Start the drag given the initial Cursor to display, a drag Image , the offset of the Image , the Transferable object, and the DragSourceListener to use. |