Project

General

Profile

Download (553 Bytes) Statistics
| Branch: | Tag: | Revision:
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
 */
13
public class NameEditorDragSourceEffect extends DragSourceEffect {
14

    
15
	public NameEditorDragSourceEffect(Control control) {
16
		super(control);
17
	}
18

    
19
	@Override
20
	public void dragStart(DragSourceEvent event) {
21
		super.dragStart(event);
22
	}
23

    
24
	@Override
25
	public void dragFinished(DragSourceEvent event) {
26
		super.dragFinished(event);
27
	}
28

    
29
}
(2-2/4)