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.db; //from www.j ava 2 s . c om import org.moire.opensudoku.game.SudokuGame; public class SudokuImportParams { public long created; public long state; public long time; public long lastPlayed; public String data; public String note; public void clear() { created = 0; state = SudokuGame.GAME_STATE_NOT_STARTED; time = 0; lastPlayed = 0; data = null; note = null; } }