]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.db/src/org/simantics/db/event/ChangeEvent.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.db / src / org / simantics / db / event / ChangeEvent.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.db.event;\r
13 \r
14 import org.simantics.db.ChangeSet;\r
15 import org.simantics.db.MetadataI;\r
16 import org.simantics.db.ReadGraph;\r
17 import org.simantics.db.Session;\r
18 import org.simantics.db.WriteGraph;\r
19 import org.simantics.db.service.TeamSupport;\r
20 \r
21 /**\r
22  * An event structure for {@link ChangeListener}.\r
23  * \r
24  * Informs of incoming changes in a Session, i.e. a completed transaction or an\r
25  * update external to this Session caused by a synchronize operation using\r
26  * {@link TeamSupport}.\r
27  * \r
28  * @author Tuukka Lehtonen\r
29  * @see ChangeListener\r
30  * @see Session\r
31  */\r
32 public class ChangeEvent {\r
33 \r
34     private final Session   session;\r
35 \r
36     private final ReadGraph graph;\r
37     \r
38     private final WriteGraph metadataGraph;\r
39 \r
40     private final ChangeSet changes;\r
41 \r
42     public ChangeEvent(Session session, ReadGraph graph, WriteGraph metadataGraph, ChangeSet changeSet) {\r
43         this.session = session;\r
44         this.graph = graph;\r
45         this.metadataGraph = metadataGraph;\r
46         this.changes = changeSet;\r
47     }\r
48 \r
49     public Session getSession() {\r
50         return session;\r
51     }\r
52 \r
53     public ReadGraph getGraph() {\r
54         return graph;\r
55     }\r
56 \r
57     public ChangeSet getChanges() {\r
58         return changes;\r
59     }\r
60     \r
61     public MetadataI getMetadataI() {\r
62         return metadataGraph;\r
63     }\r
64     \r
65 \r
66 }\r