Project

General

Profile

Download (1.82 KB) 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.preference;
10

    
11
import org.eclipse.jface.preference.BooleanFieldEditor;
12

    
13
import eu.etaxonomy.taxeditor.preference.menu.FieldEditorPreferencePageE4;
14

    
15
/**
16
 * @author k.luther
17
 * @since 16.10.2018
18
 *
19
 */
20
public class SearchDialogPreferences extends FieldEditorPreferencePageE4 {
21

    
22
    /**
23
     * {@inheritDoc}
24
     */
25
    @Override
26
    protected void createFieldEditors() {
27
        addField(new BooleanFieldEditor(PreferencesUtil.createPreferenceString(IPreferenceKeys.SHOW_ID_IN_ENTITY_SELECTION_DIAOLOG),
28
                "Show object id in entity selection dialogs",
29
                getFieldEditorParent()));
30
        addField(new BooleanFieldEditor(PreferencesUtil.createPreferenceString(IPreferenceKeys.IS_SEARCH_FOR_IDENTIFIER_AS_DEFAULT),
31
                "Set search for Identifier as default.",
32
                getFieldEditorParent()));
33
        addField(new BooleanFieldEditor(PreferencesUtil.createPreferenceString(IPreferenceKeys.SEARCH_FOR_IDENTIFIER_AND_TITLECACHE),
34
                "Search for identifier and titleCache, if identifier search is enabled",
35
                getFieldEditorParent()));
36

    
37
        addField(new BooleanFieldEditor(PreferencesUtil.createPreferenceString(IPreferenceKeys.SORT_TAXA_BY_RANK_AND_NAME),
38
                "In selection dialogs for taxa, sort by rank and name",
39
                getFieldEditorParent()));
40
        addField(new BooleanFieldEditor(PreferencesUtil.createPreferenceString(
41
                IPreferenceKeys.FILTER_COMMON_NAME_REFERENCES),
42
                "Filter common name references", getFieldEditorParent()));
43

    
44

    
45

    
46

    
47
    }
48

    
49
}
(29-29/38)