Project

General

Profile

Download (914 Bytes) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2019 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.io.e4.out.owl;
10

    
11
import java.util.Collections;
12

    
13
import org.eclipse.jface.wizard.WizardPage;
14
import org.eclipse.swt.SWT;
15
import org.eclipse.swt.widgets.Composite;
16

    
17
/**
18
 * @author pplitzner
19
 * @since May 23, 2019
20
 *
21
 */
22
public class OwlTermExportWizardPage extends WizardPage {
23

    
24
    protected OwlTermExportWizardPage(String pageName) {
25
        super(pageName);
26
        setTitle("OWL Term Export");
27
        setDescription("Select the objects to export");
28
    }
29

    
30
    @Override
31
    public void createControl(Composite parent) {
32
        setControl(new OwlTermExportComposite(Collections.EMPTY_LIST, parent, SWT.NONE));
33
    }
34

    
35
}
(4-4/4)