Mercurial > hg > Members > tatsuki > Alice
annotate src/alice/datasegment/DataSegmentValue.java @ 100:b01fb5090e28 working
add default code to each case statements
author | kazz <kazz@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Thu, 28 Jun 2012 01:50:29 +0900 |
parents | 98ab26e09a98 |
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 } |