1
2 package hep.wired.heprep.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 global commands.
10 *
11 * @author Mark Donszelmann
12 * @version $Id: WiredGlobalCommandHandler.java 690 2005-03-16 09:07:07Z duns $
13 */
14 public class WiredGlobalCommandHandler extends CommandProcessor {
15
16 private WiredPlugin plugin;
17
18 public WiredGlobalCommandHandler() {
19 plugin = WiredPlugin.getPlugin();
20 }
21 }