view src/alice/datasegment/DataSegmentValue.java @ 328:370a2f63944f

add ListManager Test
author sugi
date Tue, 11 Feb 2014 16:10:23 +0900
parents 7f47231ef509
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;
	}
	
}