fix sorting in termcombo
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / ui / EditViewerDropAdapter.java
1 /**
2 * Copyright (C) 2017 EDIT
3 * European Distributed Institute of Taxonomy
4 * http://www.e-taxonomy.eu
5 *
6 * The contents of this file are subject to the Mozilla Public License Version 1.1
7 * See LICENSE.TXT at the top of this package for the full license terms.
8 */
9 package eu.etaxonomy.taxeditor.ui;
10
11 import javax.inject.Inject;
12
13 import org.eclipse.e4.ui.di.UISynchronize;
14 import org.eclipse.jface.viewers.Viewer;
15 import org.eclipse.jface.viewers.ViewerDropAdapter;
16
17 /**
18 * @author pplitzner
19 * @since Oct 15, 2017
20 *
21 */
22 public abstract class EditViewerDropAdapter extends ViewerDropAdapter {
23
24 @Inject
25 protected UISynchronize sync;
26
27 public EditViewerDropAdapter(Viewer viewer) {
28 super(viewer);
29 }
30
31 }