diff options
author | Ahmed Ashour <asashour@yahoo.com> | 2017-10-04 10:29:34 +0200 |
---|---|---|
committer | Henri Sara <henri.sara@gmail.com> | 2017-10-04 11:29:34 +0300 |
commit | 83f5e593f66d36d99b22298e8023afd3c31a6122 (patch) | |
tree | f17f2a455cd928e3867f58274df68b4014da781d /shared | |
parent | f265739578783ca08b7829ba030a38574b3ed4a7 (diff) | |
download | vaadin-framework-83f5e593f66d36d99b22298e8023afd3c31a6122.tar.gz vaadin-framework-83f5e593f66d36d99b22298e8023afd3c31a6122.zip |
Fix typos (#10124)
Diffstat (limited to 'shared')
-rw-r--r-- | shared/src/main/java/com/vaadin/shared/ui/grid/GridDropTargetRpc.java | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/shared/src/main/java/com/vaadin/shared/ui/grid/GridDropTargetRpc.java b/shared/src/main/java/com/vaadin/shared/ui/grid/GridDropTargetRpc.java index 8309608ca6..f89f2ab626 100644 --- a/shared/src/main/java/com/vaadin/shared/ui/grid/GridDropTargetRpc.java +++ b/shared/src/main/java/com/vaadin/shared/ui/grid/GridDropTargetRpc.java @@ -34,21 +34,22 @@ public interface GridDropTargetRpc extends ServerRpc { * Called when drop event happens on client side. * * @param types - * List of data types from {@code DataTransfer.types} object. + * List of data types from {@code DataTransfer.types} object. * @param data - * Map containing all types and corresponding data from the {@code + * Map containing all types and corresponding data from the + * {@code * DataTransfer} object. * @param dropEffect - * the desired drop effect + * the desired drop effect * @param rowKey - * Key of the row on which the drop event occured. + * Key of the row on which the drop event occurred. * @param dropLocation - * Location of the drop within the row. + * Location of the drop within the row. * @param mouseEventDetails - * Mouse event details object containing information about the drop - * event + * Mouse event details object containing information about the + * drop event */ public void drop(List<String> types, Map<String, String> data, - String dropEffect, String rowKey, - DropLocation dropLocation, MouseEventDetails mouseEventDetails); + String dropEffect, String rowKey, DropLocation dropLocation, + MouseEventDetails mouseEventDetails); } |