Project

General

Profile

Download (871 Bytes) Statistics
| Branch: | Tag: | Revision:
1
/**
2
 * 
3
 */
4
package eu.etaxonomy.taxeditor.editor.name;
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
 * <p>NameEditorDragSourceEffect class.</p>
12
 *
13
 * @author n.hoffmann
14
 * @version $Id: $
15
 */
16
public class NameEditorDragSourceEffect extends DragSourceEffect {
17

    
18
	/**
19
	 * <p>Constructor for NameEditorDragSourceEffect.</p>
20
	 *
21
	 * @param control a {@link org.eclipse.swt.widgets.Control} object.
22
	 */
23
	public NameEditorDragSourceEffect(Control control) {
24
		super(control);
25
	}
26
	
27
	/** {@inheritDoc} */
28
	@Override
29
	public void dragStart(DragSourceEvent event) {
30
		// TODO Auto-generated method stub
31
		super.dragStart(event);
32
	}
33

    
34
	/** {@inheritDoc} */
35
	@Override
36
	public void dragFinished(DragSourceEvent event) {
37
		// TODO Auto-generated method stub
38
		super.dragFinished(event);
39
	}
40
	
41
}
(16-16/22)