summaryrefslogtreecommitdiffstats
path: root/server/src/com/vaadin/ui/DragAndDropWrapper.java
diff options
context:
space:
mode:
authorMarkus Koivisto <markus@vaadin.com>2014-08-28 15:46:04 +0300
committerMarkus Koivisto <markus@vaadin.com>2014-08-28 15:47:39 +0300
commit1e8a4199fd40641b38c056bc391c98c6fcb2917b (patch)
treecd25a8a378a23af9cb666d44bc4d313cb88a1928 /server/src/com/vaadin/ui/DragAndDropWrapper.java
parent53c826f3851e03af5f199c7736d8aa7f0b854a95 (diff)
downloadvaadin-framework-1e8a4199fd40641b38c056bc391c98c6fcb2917b.tar.gz
vaadin-framework-1e8a4199fd40641b38c056bc391c98c6fcb2917b.zip
Revert "Make getMouseEvent() method available in the TargetDetailsImpl (#13416)."
This reverts commit 9ea4409bbe7079887a5a3c497494d4986ddabefd. The commit fails its own tests on IE and Firefox. Change-Id: I443f8d1b9ce322124b19d74bbeb2e6780bbff201
Diffstat (limited to 'server/src/com/vaadin/ui/DragAndDropWrapper.java')
-rw-r--r--server/src/com/vaadin/ui/DragAndDropWrapper.java9
1 files changed, 9 insertions, 0 deletions
diff --git a/server/src/com/vaadin/ui/DragAndDropWrapper.java b/server/src/com/vaadin/ui/DragAndDropWrapper.java
index 6e4ec903d2..0e2e8f6d2f 100644
--- a/server/src/com/vaadin/ui/DragAndDropWrapper.java
+++ b/server/src/com/vaadin/ui/DragAndDropWrapper.java
@@ -132,6 +132,15 @@ public class DragAndDropWrapper extends CustomComponent implements DropTarget,
}
/**
+ * @return details about the actual event that caused the event details.
+ * Practically mouse move or mouse up.
+ */
+ public MouseEventDetails getMouseEvent() {
+ return MouseEventDetails
+ .deSerialize((String) getData("mouseEvent"));
+ }
+
+ /**
* @return a detail about the drags vertical position over the wrapper.
*/
public VerticalDropLocation getVerticalDropLocation() {