We use cookies to serve our customers and website visitors in the best possible way. Cookies are used for the proper functioning of the website and for improving the user experience, monitoring visitor traffic and marketing purposes. By continuing to browse the site, you agree to our use of cookies. You can read more about cookies here.
com.vaadin.event.dd.
Interface TargetDetails
-
All Superinterfaces:
All Known Implementing Classes:
@Deprecated public interface TargetDetails extends Serializable
Deprecated.Replaced in 8.1 byDropEvent.getDataTransferData(String)
TargetDetails wraps drop target related information about
DragAndDropEvent
.When a TargetDetails object is used in
DropHandler
it is often preferable to cast the TargetDetails to an implementation provided by DropTarget likeTreeTargetDetails
. They often provide a better typed, drop target specific API.Since:
6.3
-
-
Method Summary
All Methods Modifier and Type Method Description Object
getData(String key)
Deprecated.
Gets target data associated with the given string key.
DropTarget
getTarget()
Deprecated.
-
-
-
Method Detail
-
getData
Object getData(String key)
Deprecated.Gets target data associated with the given string key.
Parameters:
key
-Returns:
The data associated with the key
-
getTarget
DropTarget getTarget()
Deprecated.Returns:
the drop target on which the
DragAndDropEvent
happened.
-
-