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