]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.browsing.ui.model/src/org/simantics/browsing/ui/model/tests/HasStatementTest.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.browsing.ui.model / src / org / simantics / browsing / ui / model / tests / HasStatementTest.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 HasStatementTest implements Test {
19     Resource relation;
20
21     public HasStatementTest(Resource relation) {
22         this.relation = relation;
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         return graph.hasStatement((Resource)content, relation);
34     }
35     
36     
37 }