view src/alice/datasegment/Command.java @ 3:91057e15065f

add DataSegment API and CodeSegment
author one
date Wed, 11 Jan 2012 00:17:27 +0900
parents
children c78a1cc2cd8f
line wrap: on
line source

package alice.datasegment;

import org.msgpack.type.Value;

import alice.codesegment.CodeSegment;

public class Command {
	public CommandType cmdType;
	public Value val;
	public int index;
	public CodeSegment cs;
	public int seq;

	public Command(CommandType cmdType, Value val, int index, CodeSegment cs, int seq) {
		this.cs = cs;
		this.cmdType = cmdType;
		this.val = val;
		this.index = index;
		this.seq = seq;
	}
	
}