If you think the Android project opensudoku listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Java Source Code
/*
* Copyright (C) 2009 Roman Masek/*www.java2s.com*/
*
* This file is part of OpenSudoku.
*
* OpenSudoku is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* OpenSudoku is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with OpenSudoku. If not, see <http://www.gnu.org/licenses/>.
*
*/package org.moire.opensudoku.game.command;
import android.os.Bundle;
import org.moire.opensudoku.game.Cell;
publicclass SetCellValueCommand extends AbstractCellCommand {
privateint mCellRow;
privateint mCellColumn;
privateint mValue;
privateint mOldValue;
public SetCellValueCommand(Cell cell, int value) {
mCellRow = cell.getRowIndex();
mCellColumn = cell.getColumnIndex();
mValue = value;
}
SetCellValueCommand() {
}
@Override
void saveState(Bundle outState) {
super.saveState(outState);
outState.putInt("cellRow", mCellRow);
outState.putInt("cellColumn", mCellColumn);
outState.putInt("value", mValue);
outState.putInt("oldValue", mOldValue);
}
@Override
void restoreState(Bundle inState) {
super.restoreState(inState);
mCellRow = inState.getInt("cellRow");
mCellColumn = inState.getInt("cellColumn");
mValue = inState.getInt("value");
mOldValue = inState.getInt("oldValue");
}
@Override
void execute() {
Cell cell = getCells().getCell(mCellRow, mCellColumn);
mOldValue = cell.getValue();
cell.setValue(mValue);
}
@Override
void undo() {
Cell cell = getCells().getCell(mCellRow, mCellColumn);
cell.setValue(mOldValue);
}
}