1 package org.lsst.ccs.command.demo.subsystem;
2
3 import org.lsst.ccs.command.annotations.Command;
4
5 /**
6 *
7 * @author tonyj
8 */
9 public class ModuleB extends Module {
10
11 public ModuleB() {
12 super("B");
13 }
14
15 @Command(description = "A command in module B")
16 public void CommandInModuleB() {
17
18 }
19 }