Mercurial > hg > Database > Alice
view src/alice/datasegment/KeyCommand.java @ 215:1fd7067f0044 working
remove conversion flag
author | one |
---|---|
date | Wed, 27 Mar 2013 18:35:43 +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); } }