Project

General

Profile

Download (762 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

    
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
    @PostConstruct
24
    public void create(Composite parent){
25
        GfBioTerminologyImportComposite composite = new GfBioTerminologyImportComposite(parent, SWT.NONE);
26
        new GfBioTerminologyImportPresenter(composite);
27
    }
28
}
(2-2/6)