putAtomRunner(new ExternalToolsCommandRunner());
}
@Override
public void execute(final Command cmd) throws Exception {
final ICommandRunner cr = ATOM_RUNNERS.get(cmd.getCommandId());
if(cr == null){
// TODO log that we can't handle this command
}
cr.execute(cmd);
}