view src/alice/codesegment/CodeSegment.java @ 108:5f0010c13631 working

update MessagePack jar
author sugi
date Sun, 15 Jul 2012 20:46:42 +0900
parents 3155337e754e
children 1044a79ce4ef
line wrap: on
line source

package alice.codesegment;

import alice.codesegment.InputDataSegment;

public abstract class CodeSegment implements Runnable {
	
	public InputDataSegment ids = new InputDataSegment(this);
	public OutputDataSegment ods = new OutputDataSegment(this);
	
	public void execute() {
		ids.receive();
	}

}