Merge branch 'develop' into bulkEditorE4
[taxeditor.git] / eu.etaxonomy.taxeditor.editor / src / main / java / eu / etaxonomy / taxeditor / editor / name / e4 / dnd / NameEditorDragSourceEffect.java
1 /**
2 *
3 */
4 package eu.etaxonomy.taxeditor.editor.name.e4.dnd;
5
6 import org.eclipse.swt.dnd.DragSourceEffect;
7 import org.eclipse.swt.dnd.DragSourceEvent;
8 import org.eclipse.swt.widgets.Control;
9
10 /**
11 * @author n.hoffmann
12 * @version $Id: $
13 */
14 public class NameEditorDragSourceEffect extends DragSourceEffect {
15
16 public NameEditorDragSourceEffect(Control control) {
17 super(control);
18 }
19
20 /** {@inheritDoc} */
21 @Override
22 public void dragStart(DragSourceEvent event) {
23 super.dragStart(event);
24 }
25
26 /** {@inheritDoc} */
27 @Override
28 public void dragFinished(DragSourceEvent event) {
29 super.dragFinished(event);
30 }
31
32 }