Mercurial > hg > Database > Alice
annotate src/alice/datasegment/DataSegmentValue.java @ 28:98ab26e09a98
Configuration Manager work and implements reverseKey
author | kazz <kazz@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 17 Jan 2012 08:41:34 +0900 |
parents | 91057e15065f |
children | d2f5c885a367 |
rev | line source |
---|---|
3 | 1 package alice.datasegment; |
2 | |
3 import org.msgpack.type.Value; | |
4 | |
5 public class DataSegmentValue { | |
6 | |
7 public int index; | |
8 public Value val; | |
28
98ab26e09a98
Configuration Manager work and implements reverseKey
kazz <kazz@cr.ie.u-ryukyu.ac.jp>
parents:
3
diff
changeset
|
9 public String from; |
3 | 10 |
28
98ab26e09a98
Configuration Manager work and implements reverseKey
kazz <kazz@cr.ie.u-ryukyu.ac.jp>
parents:
3
diff
changeset
|
11 public DataSegmentValue(int index, Value val, String reverseKey) { |
3 | 12 this.index = index; |
13 this.val = val; | |
28
98ab26e09a98
Configuration Manager work and implements reverseKey
kazz <kazz@cr.ie.u-ryukyu.ac.jp>
parents:
3
diff
changeset
|
14 this.from = reverseKey; |
3 | 15 } |
16 | |
17 } |