Class StreetsideCommand

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      abstract void redo()
      Redoes the action.
      abstract void sum​(StreetsideCommand command)
      If two equal commands are applied consecutively to the same set of images, they are summed in order to reduce them to just one command.
      abstract java.lang.String toString()  
      abstract void undo()
      Undoes the action.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Method Detail

      • undo

        public abstract void undo()
        Undoes the action.
      • redo

        public abstract void redo()
        Redoes the action.
      • sum

        public abstract void sum​(StreetsideCommand command)
        If two equal commands are applied consecutively to the same set of images, they are summed in order to reduce them to just one command.
        Parameters:
        command - The command to be summed to last command.
      • toString

        public abstract java.lang.String toString()
        Overrides:
        toString in class java.lang.Object