Mercurial > hg > Members > tatsuki > Alice
view src/alice/codesegment/CodeSegment.java @ 111:ba64a9d76e70 working
Add AutoIncrement
author | sugi |
---|---|
date | Tue, 17 Jul 2012 17:23:55 +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(); } }