Examples of UndoableTask


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
Copyright © 2018 www.massapi.com. 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.