Project

General

Profile

Download (740 Bytes) Statistics
| Branch: | Tag: | Revision:
1 305c1b35 Katja Luther
/**
2 2f9887be Katja Luther
* Copyright (C) 2019 EDIT
3 305c1b35 Katja Luther
* 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.preference;
10
11 2f9887be Katja Luther
import org.eclipse.swt.widgets.Composite;
12
import org.eclipse.swt.widgets.Control;
13 305c1b35 Katja Luther
14 2f9887be Katja Luther
import eu.etaxonomy.taxeditor.preference.menu.CdmPreferencePage;
15 305c1b35 Katja Luther
16
/**
17
 * @author k.luther
18 2f9887be Katja Luther
 * @since 18.01.2019
19 305c1b35 Katja Luther
 *
20
 */
21 2f9887be Katja Luther
public class SearchPreferences extends CdmPreferencePage {
22 305c1b35 Katja Luther
23
    /**
24
     * {@inheritDoc}
25
     */
26
    @Override
27 2f9887be Katja Luther
    protected Control createContents(Composite parent) {
28 473f7b01 Katja Luther
        noDefaultAndApplyButton();
29 2f9887be Katja Luther
        return null;
30 305c1b35 Katja Luther
    }
31
32
}