Project

General

Profile

Download (1.02 KB) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2014 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.FieldEditorPreferencePage;
12
import org.eclipse.ui.IWorkbench;
13
import org.eclipse.ui.IWorkbenchPreferencePage;
14

    
15
/**
16
 * @author a.oppermann
17
 * @date 13.08.2014
18
 *
19
 */
20
public class TemplatePreferencePage extends FieldEditorPreferencePage implements IWorkbenchPreferencePage {
21

    
22
    @Override
23
    public void init(IWorkbench workbench) {
24
        setPreferenceStore(PreferencesUtil.getPreferenceStore());
25
    }
26

    
27
    /* (non-Javadoc)
28
     * @see org.eclipse.jface.preference.FieldEditorPreferencePage#createFieldEditors()
29
     */
30
    @Override
31
    protected void createFieldEditors() {
32
      //  addField(new BooleanFieldEditor(IPreferenceKeys.IS_RL, "Rote Liste 2020",  getFieldEditorParent()));
33
    }
34

    
35
}
(24-24/25)