view src/alice/datasegment/DataSegmentValue.java @ 100:b01fb5090e28 working

add default code to each case statements
author kazz <kazz@cr.ie.u-ryukyu.ac.jp>
date Thu, 28 Jun 2012 01:50:29 +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;
	}
	
}