]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.databoard/src/org/simantics/databoard/accessor/event/MapEntryAdded.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.databoard / src / org / simantics / databoard / accessor / event / MapEntryAdded.java
1 /*******************************************************************************\r
2  *  Copyright (c) 2010 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.databoard.accessor.event;
13
14 import org.simantics.databoard.accessor.reference.ChildReference;\r
15 import org.simantics.databoard.annotations.Optional;\r
16 import org.simantics.databoard.binding.mutable.MutableVariant;\r
17
18 public class MapEntryAdded extends ModificationEvent {
19
20         /** The key of the new entry. */
21         public MutableVariant key; 
22         /** The value of the new enry. Value is added if the entry was in interest Set */
23         public @Optional MutableVariant value;
24 \r
25         public MapEntryAdded(ChildReference reference, MutableVariant key, MutableVariant value) {\r
26                 this.reference = reference;\r
27                 this.key = key;\r
28                 this.value = value;\r
29         }\r
30         
31         public MapEntryAdded(MutableVariant key) {
32                 this.key = key;
33         } 
34         
35         public MapEntryAdded(MutableVariant key, MutableVariant value) {
36                 this.key = key;
37                 this.value = value;
38         } 
39         
40         @Override
41         public MapEntryAdded clone(ChildReference newReference) {
42                 MapEntryAdded result = new MapEntryAdded(key, value);
43                 result.reference = newReference;
44                 return result;
45         }               
46         \r
47         @Override\r
48         public String toString() {\r
49                 return toRef()+" "+key+" = "+value;\r
50         }       
51         
52 }
53