merge-update from trunk
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / preference / PreferencePropertyTester.java
1 // $Id$
2 /**
3 * Copyright (C) 2007 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
11 package eu.etaxonomy.taxeditor.preference;
12
13 import org.eclipse.core.expressions.PropertyTester;
14
15 /**
16 * @author n.hoffmann
17 * @created Jan 26, 2011
18 * @version 1.0
19 */
20 public class PreferencePropertyTester extends PropertyTester {
21
22
23 private static final String SHOW_EXPERIMENTAL_FEATURES = "isShowExperimentalFeatures";
24
25 private static final String SHOW_CHECKLIST_EDITOR = "isChecklistEditorEnabled";
26
27 @Override
28 public boolean test(Object receiver, String property, Object[] args,
29 Object expectedValue) {
30 if(SHOW_EXPERIMENTAL_FEATURES.equals(property)){
31 return isShowExperimentalFeatures();
32 }
33 if(SHOW_CHECKLIST_EDITOR.equals(property)){
34 return isChecklistEditorEnabled();
35 }
36 return false;
37 }
38
39 /**
40 * @return
41 */
42 private boolean isShowExperimentalFeatures() {
43 return PreferencesUtil.getPreferenceStore().getBoolean(IPreferenceKeys.SHOW_EXPERIMENTAL_FEATURES);
44 }
45
46 private boolean isChecklistEditorEnabled() {
47 return PreferencesUtil.getPreferenceStore().getBoolean(IPreferenceKeys.DISTRIBUTION_AREA_PREFRENCES_ACTIVE);
48 }
49
50 }