}
public void moveDownCommand(AbstractCommandModel command) {
int commandIndex = commands.indexOf(command);
int swapCommandIndex = commandIndex + 1;
AbstractCommandModel swapCommand = commands.get(swapCommandIndex);
commands.set(swapCommandIndex, command);
commands.set(commandIndex, swapCommand);
}