]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.browsing.ui.model/src/org/simantics/browsing/ui/model/children/RelationStatementRule.java
82b92055d7ac72532d13129d998018da47e9b473
[simantics/platform.git] / bundles / org.simantics.browsing.ui.model / src / org / simantics / browsing / ui / model / children / RelationStatementRule.java
1 /*******************************************************************************\r
2  * Copyright (c) 2010, 2011 Association for Decentralized Information Management in\r
3  * Industry THTH ry.\r
4  * All rights reserved. This program and the accompanying materials\r
5  * are made available under the terms of the Eclipse Public License v1.0\r
6  * which accompanies this distribution, and is available at\r
7  * http://www.eclipse.org/legal/epl-v10.html\r
8  *\r
9  * Contributors:\r
10  *     VTT Technical Research Centre of Finland - initial API and implementation\r
11  *******************************************************************************/\r
12 package org.simantics.browsing.ui.model.children;\r
13 \r
14 import java.util.ArrayList;\r
15 import java.util.Collection;\r
16 import java.util.Collections;\r
17 \r
18 import org.simantics.browsing.ui.model.tests.Test;\r
19 import org.simantics.db.ReadGraph;\r
20 import org.simantics.db.Resource;\r
21 import org.simantics.db.Statement;\r
22 import org.simantics.db.exception.DatabaseException;\r
23 \r
24 /**\r
25  * A child rule that says that there is exactly one child node whose content \r
26  * is equal to the content of the parent.\r
27  * @author Hannu Niemistö\r
28  */\r
29 public class RelationStatementRule implements ChildRule {\r
30 \r
31     Resource relation;\r
32     \r
33     public RelationStatementRule(Resource relation, Test test) {\r
34         this.relation = relation;\r
35     }\r
36     \r
37     @Override\r
38     public Collection<?> getChildren(ReadGraph graph, Object parent) throws DatabaseException {\r
39         ArrayList<Statement> result = new ArrayList<Statement>();\r
40         for(Resource property : graph.getPredicates((Resource)parent)) {\r
41                 if(graph.isSubrelationOf(property, relation)) {\r
42                         result.addAll(graph.getStatements((Resource)parent, property));\r
43                 }\r
44         }\r
45         return result;\r
46     }\r
47 \r
48     @Override\r
49     public Collection<?> getParents(ReadGraph graph, Object child)\r
50             throws DatabaseException {\r
51         return Collections.emptyList();\r
52     }\r
53     \r
54     @Override\r
55     public boolean isCompatible(Class<?> contentType) {\r
56         return contentType.equals(Resource.class);\r
57     }\r
58 }\r