]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.modeling/src/org/simantics/modeling/mapping/Tag.java
Layer0Utils.addL0Identifier to prevent possible differentiation of code
[simantics/platform.git] / bundles / org.simantics.modeling / src / org / simantics / modeling / mapping / Tag.java
1 /*******************************************************************************
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management
3  * in 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.modeling.mapping;
13
14 import org.simantics.db.ReadGraph;
15 import org.simantics.db.Resource;
16 import org.simantics.db.WriteGraph;
17 import org.simantics.db.exception.DatabaseException;
18 import org.simantics.layer0.utils.predicates.UnaryTest;
19
20 public class Tag extends UnaryTest {
21
22     Resource tag;
23     
24     public Tag(Resource tag) {
25         this.tag = tag;
26     }
27     
28     @Override
29     public boolean has(ReadGraph g, Resource r) throws DatabaseException {
30         return g.hasStatement(r, tag);
31     }
32     
33     @Override
34     public void add(WriteGraph g, Resource r) throws DatabaseException {
35         if(!g.hasStatement(r, tag))
36             g.claim(r, tag, r);
37     }
38     
39     @Override
40     public void remove(WriteGraph g, Resource r) throws DatabaseException {
41         g.deny(r, tag);
42     }
43
44 }