Package com.vaadin.shared.ui.dnd
Interface DropTargetRpc
-
- All Superinterfaces:
Serializable
,ServerRpc
public interface DropTargetRpc extends ServerRpc
RPC for firing server side drop event when client side drop event happens on drop target.- Since:
- 8.1
- Author:
- Vaadin Ltd
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
drop(List<String> types, Map<String,String> data, String dropEffect, MouseEventDetails mouseEventDetails)
Called when drop event happens on client side.
-
-
-
Method Detail
-
drop
void drop(List<String> types, Map<String,String> data, String dropEffect, MouseEventDetails mouseEventDetails)
Called when drop event happens on client side.- Parameters:
types
- List of data types fromDataTransfer.types
object.data
- Map containing all types and corresponding data from theDataTransfer
object.dropEffect
- The desired drop effect.mouseEventDetails
- mouse event details object containing information about the drop event
-
-