]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.browsing.ui.model/src/org/simantics/browsing/ui/model/tests/HasNegatedTest.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.browsing.ui.model / src / org / simantics / browsing / ui / model / tests / HasNegatedTest.java
1 /*******************************************************************************
2  * Copyright (c) 2010, 2011 Association for Decentralized Information Management in
3  * Industry THTH ry.
4  * All rights reserved. This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License v1.0
6  * which accompanies this distribution, and is available at
7  * http://www.eclipse.org/legal/epl-v10.html
8  *
9  * Contributors:
10  *     VTT Technical Research Centre of Finland - initial API and implementation
11  *******************************************************************************/
12 package org.simantics.browsing.ui.model.tests;
13
14 import org.simantics.db.ReadGraph;
15 import org.simantics.db.Resource;
16 import org.simantics.db.exception.DatabaseException;
17
18 public class HasNegatedTest implements Test {
19     Test test;
20
21     public HasNegatedTest(Test test) {
22         this.test = test;
23     }
24
25     @Override
26     public boolean isCompatible(Class<?> contentType) {
27         return contentType == Resource.class;
28     }
29
30     @Override
31     public boolean test(ReadGraph graph, Object content)
32             throws DatabaseException {
33         
34         return test == null ? null : !test.test(graph, content);
35     }
36     
37     
38 }