]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.diagram/src/org/simantics/diagram/synchronization/graph/TagChange.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.diagram / src / org / simantics / diagram / synchronization / graph / TagChange.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.diagram.synchronization.graph;\r
13 \r
14 import org.simantics.db.Resource;\r
15 import org.simantics.db.WriteGraph;\r
16 import org.simantics.diagram.synchronization.ModificationAdapter;\r
17 \r
18 /**\r
19  * @author Tuukka Lehtonen\r
20  */\r
21 public class TagChange extends ModificationAdapter {\r
22 \r
23     final Resource object;\r
24     final Resource tag;\r
25     final boolean  set;\r
26 \r
27     public TagChange(Resource object, Resource tag, boolean set) {\r
28         super(LOW_PRIORITY);\r
29         this.object = object;\r
30         this.tag = tag;\r
31         this.set = set;\r
32     }\r
33 \r
34     @Override\r
35     public void perform(WriteGraph g) throws Exception {\r
36         DiagramGraphUtil.tag(g, object, tag, set);\r
37     }\r
38 \r
39 }\r