view src/alice/codesegment/Reply.java @ 6:c78a1cc2cd8f

implements Reply
author one
date Thu, 12 Jan 2012 13:19:04 +0900
parents
children
line wrap: on
line source

package alice.codesegment;

import org.msgpack.type.Value;

public class Reply {
	int seq;
	int index;
	Value val;
	
	public Reply(int seq, int index, Value val) {
		this.seq = seq;
		this.index = index;
		this.val = val;
	}
}