Mercurial > hg > Database > Alice
view src/alice/datasegment/DataSegmentValue.java @ 170:6a69891b7232 working
change view point
author | sugi |
---|---|
date | Thu, 27 Dec 2012 14:38:42 +0900 |
parents | 98ab26e09a98 |
children | d2f5c885a367 |
line wrap: on
line source
package alice.datasegment; import org.msgpack.type.Value; public class DataSegmentValue { public int index; public Value val; public String from; public DataSegmentValue(int index, Value val, String reverseKey) { this.index = index; this.val = val; this.from = reverseKey; } }