Mercurial > hg > Members > tatsuki > Alice
view src/alice/datasegment/KeyCommand.java @ 69:1d4f2b72fb31
delete KeyThread
author | kazz <kazz@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 21 Feb 2012 19:44:33 +0900 |
parents | |
children |
line wrap: on
line source
package alice.datasegment; public class KeyCommand { DataSegmentKey key; Command cmd; public KeyCommand(DataSegmentKey key, Command cmd) { this.key = key; this.cmd = cmd; } public void runCommand() { key.runCommand(cmd); } }