view src/alice/datasegment/DataSegmentValue.java @ 108:5f0010c13631 working

update MessagePack jar
author sugi
date Sun, 15 Jul 2012 20:46: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;
	}
	
}