]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.databoard/src/org/simantics/databoard/accessor/event/ArrayElementAdded.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.databoard / src / org / simantics / databoard / accessor / event / ArrayElementAdded.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 /**
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; 
29         
30         public ArrayElementAdded(ChildReference ref, int index, MutableVariant value) {
31                 this.reference = ref;
32                 this.index = index;
33                 this.value = value;
34         }
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
48         @Override
49         public String toString() {
50                 return toRef()+"["+index+"] += "+value+"";
51         }
52         
53 }
54