Package org.loboevolution.events
Interface DragEvent
- All Superinterfaces:
Event
,MouseEvent
,UIEvent
- All Known Implementing Classes:
DragEventImpl
A DragEvent represents a drag and drop interaction. The user initiates a drag by placing a pointer device (such as
a mouse) on the touch surface and then dragging the pointer to a new location (such as another DOM element).
Applications are free to interpret a drag and drop interaction in an application-specific way.
-
Field Summary
Fields inherited from interface org.loboevolution.events.Event
AT_TARGET, BUBBLING_PHASE, CAPTURING_PHASE, NONE
-
Method Summary
Modifier and TypeMethodDescriptionReturns the data that is transferred during a drag and drop interaction.Methods inherited from interface org.loboevolution.events.Event
getBubbles, getCancelable, getComposed, getComposedPath, getCurrentTarget, getDefaultPrevented, getEventPhase, getReturnValue, getSrcElement, getStopImmediatePropagation, getStopPropagation, getTarget, getTimeStamp, getTrusted, getType, initEvent, initEvent, initEvent, preventDefault
Methods inherited from interface org.loboevolution.events.MouseEvent
getAltKey, getButton, getButtons, getClientX, getClientY, getCtrlKey, getMetaKey, getModifierState, getMovementX, getMovementY, getOffsetX, getOffsetY, getPageX, getPageY, getScreenX, getScreenY, getShiftKey, getX, getY, initMouseEvent, initMouseEvent, initMouseEvent, initMouseEvent, initMouseEvent, initMouseEvent, initMouseEvent, initMouseEvent, initMouseEvent, initMouseEvent, initMouseEvent, initMouseEvent, initMouseEvent, initMouseEvent, initMouseEvent, relatedTarget
Methods inherited from interface org.loboevolution.events.UIEvent
getDetail, getView, getWhich, initUIEvent, initUIEvent, initUIEvent, initUIEvent, initUIEvent
-
Method Details
-
getDataTransfer
DataTransfer getDataTransfer()Returns the data that is transferred during a drag and drop interaction.
-