Exemplo n.º 1
0
 public DebuggerApplication(DebuggerModel model, CommandSet commandSet, CommandResultWriterSet commandResultWriterSet)
 {
     this.model                  = model;
     this.commandSet             = commandSet;
     this.commandResultWriterSet = commandResultWriterSet;
     list = new ListCommand(commandSet.GetAll());
     commandSet.Add(list);
     commandSet.Add(new HelpCommand(commandSet));
     commandSet.Add(new ConnectCommand());
 }