1
2 package hep.wired.plugin;
3
4 import org.freehep.util.commanddispatcher.CommandProcessor;
5 import org.freehep.util.commanddispatcher.CommandState;
6 import org.freehep.util.commanddispatcher.BooleanCommandState;
7
8 /***
9 * Defines a command handler for base commands.
10 *
11 * @author Mark Donszelmann
12 * @version $Id: WiredBaseCommandHandler.java 266 2004-06-08 23:37:39Z duns $
13 */
14 public class WiredBaseCommandHandler extends CommandProcessor {
15
16 private WiredBase base;
17
18 public WiredBaseCommandHandler(WiredBase base) {
19 this.base = base;
20 }
21 }