Back to project page opensudoku.
The source code is released under:
GNU General Public License
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.
package org.moire.opensudoku.game.command; /*from w w w . j ava 2 s. co m*/ import org.moire.opensudoku.game.CellCollection; /** * Generic command acting on one or more cells. * * @author romario */ public abstract class AbstractCellCommand extends AbstractCommand { private CellCollection mCells; protected CellCollection getCells() { return mCells; } protected void setCells(CellCollection mCells) { this.mCells = mCells; } }