Project

General

Profile

Download (1.93 KB) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2007 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

    
10
package eu.etaxonomy.taxeditor.preference;
11

    
12
import org.eclipse.core.expressions.PropertyTester;
13

    
14
/**
15
 * @author n.hoffmann
16
 * @created Jan 26, 2011
17
 * @version 1.0
18
 */
19
public class PreferencePropertyTester extends PropertyTester {
20

    
21

    
22
	private static final String SHOW_EXPERIMENTAL_FEATURES = "isShowExperimentalFeatures";
23

    
24
    private static final String SHOW_CHECKLIST_EDITOR = "isChecklistEditorEnabled";
25

    
26
    private static final String SHOW_IO_MENU = "isShowIOMenuEnabled";
27

    
28
    private static final String SHOW_SPECIMEN_MENU = "isShowSpecimenMenuEnabled";
29

    
30
	@Override
31
	public boolean test(Object receiver, String property, Object[] args,
32
			Object expectedValue) {
33
		if(SHOW_EXPERIMENTAL_FEATURES.equals(property)){
34
			return isShowExperimentalFeatures();
35
		}
36
	    if(SHOW_CHECKLIST_EDITOR.equals(property)){
37
	        return isChecklistEditorEnabled();
38
	    }
39
	    if(SHOW_IO_MENU.equals(property)){
40
            return isShowIOMenuEnabled();
41
        }
42
	    if(SHOW_SPECIMEN_MENU.equals(property)){
43
            return isShowSpecimenMenuEnabled();
44
        }
45
		return false;
46
	}
47

    
48
	/**
49
	 * @return
50
	 */
51
	private boolean isShowExperimentalFeatures() {
52
		return PreferencesUtil.getPreferenceStore().getBoolean(IPreferenceKeys.SHOW_EXPERIMENTAL_FEATURES);
53
	}
54

    
55
	private boolean isChecklistEditorEnabled() {
56
        return PreferencesUtil.getPreferenceStore().getBoolean(IPreferenceKeys.DISTRIBUTION_AREA_PREFRENCES_ACTIVE);
57
    }
58
	private boolean isShowIOMenuEnabled() {
59
        return PreferencesUtil.getPreferenceStore().getBoolean(IPreferenceKeys.SHOW_IO_MENU);
60
    }
61

    
62
	private boolean isShowSpecimenMenuEnabled() {
63
        return PreferencesUtil.getPreferenceStore().getBoolean(IPreferenceKeys.SHOW_SPECIMEN);
64
    }
65

    
66
}
(18-18/24)