Project

General

Profile

Download (769 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.view.search.facet.occurrence;
10

    
11
import javax.annotation.PostConstruct;
12

    
13
import org.eclipse.swt.SWT;
14
import org.eclipse.swt.widgets.Composite;
15

    
16
import eu.etaxonomy.taxeditor.view.search.facet.SearchComposite;
17

    
18
/**
19
 * @author pplitzner
20
 * @since Jan 22, 2019
21
 *
22
 */
23
public class OccurrenceSearch {
24

    
25
    @SuppressWarnings("unused")
26
    @PostConstruct
27
    public void create(Composite parent){
28
        new OccurrenceSearchController(new SearchComposite(parent, SWT.NONE));
29
    }
30
}
(2-2/5)