Merge branch 'develop' into nameEditorE4
[taxeditor.git] / eu.etaxonomy.taxeditor.editor / src / main / java / eu / etaxonomy / taxeditor / editor / name / e4 / IDropTargetableE4.java
1 /**
2 *
3 */
4 package eu.etaxonomy.taxeditor.editor.name.e4;
5
6 import org.eclipse.swt.widgets.Composite;
7
8 import eu.etaxonomy.taxeditor.operation.IPostOperationEnabled;
9
10 /**
11 *
12 * @author pplitzner
13 * @date Aug 24, 2017
14 *
15 */
16 public interface IDropTargetableE4 extends IPostOperationEnabled {
17
18 public Composite getControl();
19
20 public TaxonNameEditorE4 getEditor();
21
22 public void dragEntered();
23
24 public void dragLeft();
25 }