Project

General

Profile

« Previous | Next » 

Revision e6f7451a

Added by Katja Luther over 5 years ago

remove old class

View differences:

eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/preference/AdminGeneralPreferences_.java
1
/**
2
* Copyright (C) 2016 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
 * @date 01.11.2016
18
 *
19
 */
20
public class AdminGeneralPreferences_ extends FieldEditorPreferencePageE4 {
21

  
22
    /* (non-Javadoc)
23
     * @see org.eclipse.jface.preference.FieldEditorPreferencePage#createFieldEditors()
24
     */
25
    @Override
26
    protected void createFieldEditors() {
27
        addField(new BooleanFieldEditor(IPreferenceKeys.IS_SHOW_UP_WIDGET_IS_DISPOSED,
28
                "Show up widget is disposed error messages.",
29
                getFieldEditorParent()));
30
        addField(new BooleanFieldEditor(IPreferenceKeys.DISABLE_SERVICES_API_TIMESTAMP_CHECK,
31
                "Disable services api timestamp check",
32
                getFieldEditorParent()));
33
        addField(new BooleanFieldEditor(
34
                IPreferenceKeys.SHOW_EXPERIMENTAL_FEATURES,
35
                "Show experimental features", getFieldEditorParent()));
36

  
37

  
38
    }
39

  
40
}

Also available in: Unified diff