Merge branch 'release/5.0.0' into develop
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / view / webimport / termimport / GfBioTerminologyImportPart.java
1 /**
2 * Copyright (C) 2018 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.view.webimport.termimport;
10
11 import javax.annotation.PostConstruct;
12
13 import org.eclipse.swt.SWT;
14 import org.eclipse.swt.widgets.Composite;
15
16 /**
17 * @author pplitzner
18 * @since Apr 23, 2018
19 *
20 */
21 public class GfBioTerminologyImportPart {
22
23 @SuppressWarnings("unused")
24 @PostConstruct
25 public void create(Composite parent){
26 GfBioTerminologyImportComposite composite = new GfBioTerminologyImportComposite(parent, SWT.NONE);
27 new GfBioTerminologyImportPresenter(composite);
28 }
29 }