]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.mapping/src/org/simantics/mapping/constraint/instructions/Instruction1.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.mapping / src / org / simantics / mapping / constraint / instructions / Instruction1.java
1 /*******************************************************************************\r
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management\r
3  * in 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.mapping.constraint.instructions;\r
13 \r
14 import gnu.trove.map.hash.TIntIntHashMap;\r
15 import gnu.trove.set.hash.TIntHashSet;\r
16 \r
17 import org.simantics.db.WriteGraph;\r
18 import org.simantics.db.exception.DatabaseException;\r
19 \r
20 public abstract class Instruction1 implements IInstruction {\r
21         int variable0;  \r
22         \r
23         public Instruction1(int variable0) {\r
24                 this.variable0 = variable0;\r
25         }\r
26 \r
27         @Override\r
28         public void mapVariables(TIntIntHashMap map) {\r
29                 variable0 = map.get(variable0);\r
30         }\r
31         \r
32         @Override\r
33         public void collectVariables(TIntHashSet reads, TIntHashSet writes) {\r
34                 reads.add(variable0);\r
35         }\r
36         \r
37         @Override\r
38         public void doClaim(WriteGraph g, Object[] bindings) throws DatabaseException {\r
39                 claim(g, bindings).perform(g, bindings);\r
40         }\r
41         \r
42         @Override\r
43         public void doDeny(WriteGraph g, Object[] bindings) throws DatabaseException {\r
44                 deny(g, bindings).perform(g, bindings);\r
45         }\r
46 }\r