]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.databoard/src/org/simantics/databoard/accessor/event/MapEntryAdded.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.databoard / src / org / simantics / databoard / accessor / event / MapEntryAdded.java
1 /*******************************************************************************
2  *  Copyright (c) 2010 Association for Decentralized Information Management in
3  *  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.databoard.accessor.event;
13
14 import org.simantics.databoard.accessor.reference.ChildReference;
15 import org.simantics.databoard.annotations.Optional;
16 import org.simantics.databoard.binding.mutable.MutableVariant;
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
25         public MapEntryAdded(ChildReference reference, MutableVariant key, MutableVariant value) {
26                 this.reference = reference;
27                 this.key = key;
28                 this.value = value;
29         }
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         
47         @Override
48         public String toString() {
49                 return toRef()+" "+key+" = "+value;
50         }       
51         
52 }
53