ref #10182: revert refresh of details view when loosing focus
[taxeditor.git] / eu.etaxonomy.taxeditor.editor / src / main / java / eu / etaxonomy / taxeditor / editor / name / e4 / IDropTargetable.java
1 /**
2 *
3 */
4 package eu.etaxonomy.taxeditor.editor.name.e4;
5
6 import org.eclipse.e4.core.contexts.IEclipseContext;
7 import org.eclipse.swt.widgets.Composite;
8
9 import eu.etaxonomy.taxeditor.operation.IPostOperationEnabled;
10
11 /**
12 *
13 * @author pplitzner
14 * @date Aug 24, 2017
15 *
16 */
17 public interface IDropTargetable extends IPostOperationEnabled {
18
19 public Composite getControl();
20
21 public TaxonEditor getEditor();
22
23 public void dragEntered();
24
25 public void dragLeft();
26
27 public IEclipseContext getContext();
28 }