private void push(AbstractCommand command) {
   if (command instanceof AbstractCellCommand) {
     ((AbstractCellCommand) command).setCells(mCells);
   }
   mCommandStack.push(command);
 }