Project

General

Profile

Download (916 Bytes) Statistics
| Branch: | Tag: | Revision:
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
import javax.inject.Inject;
13

    
14
import org.eclipse.e4.ui.di.UISynchronize;
15
import org.eclipse.swt.SWT;
16
import org.eclipse.swt.widgets.Composite;
17

    
18
/**
19
 * @author pplitzner
20
 * @since Apr 23, 2018
21
 *
22
 */
23
public class GfBioTerminologyImportPart {
24

    
25
    @Inject
26
    private UISynchronize sync;
27

    
28
    @SuppressWarnings("unused")
29
    @PostConstruct
30
    public void create(Composite parent){
31
        GfBioTerminologyImportComposite composite = new GfBioTerminologyImportComposite(parent, SWT.NONE);
32
        new GfBioTerminologyImportPresenter(composite, sync);
33
    }
34
}
(2-2/7)