Mercurial > hg > Database > Alice
view src/alice/codesegment/CodeSegment.java @ 139:f995396f2af7 working
remove bug
author | sugi |
---|---|
date | Tue, 18 Sep 2012 16:19:50 +0900 |
parents | 1044a79ce4ef |
children | 913ee9dfec4f |
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(); public void execute() { ids.receive(); } }