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 ModuleA extends Module {
10
11 public ModuleA() {
12 super("A");
13 }
14
15 @Command(description = "A command in module A")
16 public void CommandInModuleA() {
17
18 }
19 }