Mercurial > hg > Members > tatsuki > Alice
comparison src/alice/datasegment/DataSegmentValue.java @ 3:91057e15065f
add DataSegment API and CodeSegment
author | one |
---|---|
date | Wed, 11 Jan 2012 00:17:27 +0900 |
parents | |
children | 98ab26e09a98 |
comparison
equal
deleted
inserted
replaced
2:f71eabb1df2a | 3:91057e15065f |
---|---|
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; | |
9 | |
10 public DataSegmentValue(int index, Value val) { | |
11 this.index = index; | |
12 this.val = val; | |
13 } | |
14 | |
15 } |