diff options
author | Pekka Hyvönen <pekka@vaadin.com> | 2017-05-12 11:33:55 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-12 11:33:55 +0300 |
commit | 76892855a7c3f37a1fef5caee3c0debf6aa712e2 (patch) | |
tree | 5f990c860d922439528b548c22d3df8bc45c03d4 /server/src/test | |
parent | 22848f3420b5aded4d35c84f368dd9c44041200f (diff) | |
download | vaadin-framework-76892855a7c3f37a1fef5caee3c0debf6aa712e2.tar.gz vaadin-framework-76892855a7c3f37a1fef5caee3c0debf6aa712e2.zip |
Refactor Html5 DnD feature based on API review (#9306)
* Refactor Html5 DnD client side based on API review
- Moved classes to "correct" packages.
- Removed method DragSourceExtension.clearDataTransferText()
- Remove ButtonDragSource in favor of more generic API
Diffstat (limited to 'server/src/test')
-rw-r--r-- | server/src/test/java/com/vaadin/tests/event/dnd/DragAndDropBookExamples.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/src/test/java/com/vaadin/tests/event/dnd/DragAndDropBookExamples.java b/server/src/test/java/com/vaadin/tests/event/dnd/DragAndDropBookExamples.java index 14c8e10452..76bebdec01 100644 --- a/server/src/test/java/com/vaadin/tests/event/dnd/DragAndDropBookExamples.java +++ b/server/src/test/java/com/vaadin/tests/event/dnd/DragAndDropBookExamples.java @@ -2,14 +2,14 @@ package com.vaadin.tests.event.dnd; import java.util.Optional; -import com.vaadin.event.dnd.DragSourceExtension; -import com.vaadin.event.dnd.DropTargetExtension; import com.vaadin.shared.ui.dnd.DropEffect; import com.vaadin.shared.ui.dnd.EffectAllowed; import com.vaadin.ui.AbstractComponent; import com.vaadin.ui.Label; import com.vaadin.ui.Notification; import com.vaadin.ui.VerticalLayout; +import com.vaadin.ui.dnd.DragSourceExtension; +import com.vaadin.ui.dnd.DropTargetExtension; import com.vaadin.ui.themes.ValoTheme; public class DragAndDropBookExamples { |