]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.databoard/src/org/simantics/databoard/accessor/event/ArrayElementAdded.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.databoard / src / org / simantics / databoard / accessor / event / ArrayElementAdded.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 /**
19  * TODO change to ArrayELement S Added
20  *
21  * @author Toni Kalajainen <toni.kalajainen@vtt.fi>
22  */
23 public class ArrayElementAdded extends ModificationEvent {
24         
25         public int index;
26         
27         /** The new element value. Value is added if the value was in interest Set */
28         public @Optional MutableVariant value; \r
29         \r
30         public ArrayElementAdded(ChildReference ref, int index, MutableVariant value) {\r
31                 this.reference = ref;\r
32                 this.index = index;\r
33                 this.value = value;\r
34         }\r
35         
36         public ArrayElementAdded(int index, MutableVariant value) {
37                 this.index = index;
38                 this.value = value;
39         }
40         
41         @Override
42         public ArrayElementAdded clone(ChildReference newReference) {
43                 ArrayElementAdded result = new ArrayElementAdded(index, value);
44                 result.reference = newReference;
45                 return result;
46         }
47 \r
48         @Override\r
49         public String toString() {\r
50                 return toRef()+"["+index+"] += "+value+"";\r
51         }\r
52         
53 }
54