Project

General

Profile

Download (836 Bytes) Statistics
| Branch: | Tag: | Revision:
1
// $Id$
2
/**
3
* Copyright (C) 2018 EDIT
4
* European Distributed Institute of Taxonomy
5
* http://www.e-taxonomy.eu
6
*
7
* The contents of this file are subject to the Mozilla Public License Version 1.1
8
* See LICENSE.TXT at the top of this package for the full license terms.
9
*/
10
package eu.etaxonomy.taxeditor.preference.menu;
11

    
12
import org.eclipse.jface.preference.FieldEditorPreferencePage;
13

    
14
import eu.etaxonomy.taxeditor.preference.IE4PreferencePage;
15
import eu.etaxonomy.taxeditor.preference.PreferencesUtil;
16

    
17
/**
18
 * @author pplitzner
19
 * @date 14.02.2018
20
 *
21
 */
22
public abstract class FieldEditorPreferencePageE4 extends FieldEditorPreferencePage implements IE4PreferencePage{
23

    
24
    public FieldEditorPreferencePageE4() {
25
        init();
26
    }
27

    
28
    protected void init(){
29
        setPreferenceStore(PreferencesUtil.getPreferenceStore());
30
    }
31
}
(7-7/21)