com.vaadin.event.dd.
Class TargetDetailsImpl
- java.lang.Object
-
- com.vaadin.event.dd.TargetDetailsImpl
-
All Implemented Interfaces:
Direct Known Subclasses:
@Deprecated public class TargetDetailsImpl extends Object implements TargetDetails
Deprecated.Replaced in 8.1 byDropEvent.getDataTransferData(String)
A HashMap backed implementation of
TargetDetails
for terminal implementation and for extension.Since:
6.3
See Also:
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
TargetDetailsImpl(Map<String,Object> rawDropData)
Deprecated.
TargetDetailsImpl(Map<String,Object> rawDropData, DropTarget dropTarget)
Deprecated.
-
Method Summary
All Methods Modifier and Type Method Description Object
getData(String key)
Deprecated.
Gets target data associated with the given string key.
MouseEventDetails
getMouseEvent()
Deprecated.
DropTarget
getTarget()
Deprecated.
Object
setData(String key, Object value)
Deprecated.
-
-
-
Method Detail
-
getMouseEvent
public MouseEventDetails getMouseEvent()
Deprecated.Returns:
details about the actual event that caused the event details. Practically mouse move or mouse up.
-
getData
public Object getData(String key)
Deprecated.Description copied from interface:
TargetDetails
Gets target data associated with the given string key.
Specified by:
getData
in interfaceTargetDetails
Returns:
The data associated with the key
-
getTarget
public DropTarget getTarget()
Deprecated.Specified by:
getTarget
in interfaceTargetDetails
Returns:
the drop target on which the
DragAndDropEvent
happened.
-
-