Package org.anks.sudoku.util.undo

Examples of org.anks.sudoku.util.undo.UndoableTask


  {
    if (e instanceof BoardUI.BoardChangeEvent)
    {
      final BoardUI.BoardChangeEvent boardChangeEvent = (BoardUI.BoardChangeEvent) e;

      undoManager.addUndoEntry(new UndoableTask() {
        public void undo()
        {
          board.setCellValue(boardChangeEvent.getRow(),
              boardChangeEvent.getColumn(),
              boardChangeEvent.getOldValue());
View Full Code Here

TOP

Related Classes of org.anks.sudoku.util.undo.UndoableTask

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.