Mercurial > hg > Members > tatsuki > Alice
view src/main/java/alice/datasegment/DataSegmentValue.java @ 346:d46c42352e4f
change images position. It is under src/main/resources
author | sugi |
---|---|
date | Mon, 21 Apr 2014 19:57:44 +0900 |
parents | 8f71c3e6f11d |
children |
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 Object obj; public DataSegmentValue(int index, Value val, Object obj,String reverseKey) { this.index = index; this.val = val; this.from = reverseKey; this.obj = obj; } public DataSegmentValue(int index, Value val,String reverseKey) { this.index = index; this.val = val; this.from = reverseKey; } }