Project

General

Profile

Download (880 Bytes) Statistics
| Branch: | Tag: | Revision:
1
/**
2
 * 
3
 */
4
package eu.etaxonomy.taxeditor.editor.name.dnd;
5

    
6
import org.eclipse.swt.SWTException;
7
import org.eclipse.swt.dnd.DragSourceEffect;
8
import org.eclipse.swt.dnd.DragSourceEvent;
9
import org.eclipse.swt.widgets.Control;
10

    
11
/**
12
 * <p>NameEditorDragSourceEffect class.</p>
13
 *
14
 * @author n.hoffmann
15
 * @version $Id: $
16
 */
17
public class NameEditorDragSourceEffect extends DragSourceEffect {
18

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

    
35
	/** {@inheritDoc} */
36
	@Override
37
	public void dragFinished(DragSourceEvent event) {
38
		super.dragFinished(event);
39
		
40
	}
41
	
42
	
43
}
(2-2/4)