Project

General

Profile

Download (983 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
    boolean isApply = false;
24

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

    
28
    }
29

    
30
    protected void init(){
31
        setPreferenceStore(PreferencesUtil.getPreferenceStore());
32
    }
33

    
34
    /**
35
     * {@inheritDoc}
36
     */
37
    @Override
38
    public boolean isApply() {
39
        return isApply;
40
    }
41

    
42

    
43

    
44

    
45
}
(8-8/23)