merge-update from trunk
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / preference / CdmStorePropertyTester.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 import eu.etaxonomy.taxeditor.store.CdmStore;
16
17 /**
18 * @author n.hoffmann
19 * @created Jan 26, 2011
20 * @version 1.0
21 */
22 public class CdmStorePropertyTester extends PropertyTester {
23
24 private static final String EDITOR_IS_CONNECTED_TO_DB = "isCdmStoreConnected";
25
26 @Override
27 public boolean test(Object receiver, String property, Object[] args,
28 Object expectedValue) {
29
30 if(EDITOR_IS_CONNECTED_TO_DB.equals(property)){
31 return isCdmStoreConnected();
32 }
33 return false;
34 }
35
36 private boolean isCdmStoreConnected(){
37 boolean active = CdmStore.isActive();
38 return active;
39 }
40 }