Back to project page miner.
The source code is released under:
Apache License
If you think the Android project miner 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 com.kolomiyets.miner.bt.protocol; /*from ww w .ja v a2 s .c o m*/ import java.util.ArrayList; public class CmdFieldState extends CmdBase { public static final int CELL_STATE_EMPTY = 0; public static final int CELL_STATE_MINE = -1; public static final int CELL_STATE_MARK = -2; public static final int CELL_STATE_PROCESSED = 1; public final ArrayList<Integer> stateMatrix; public CmdFieldState(ArrayList<Integer> stateMatrix) { super(ECmdName.FIELD_STATE); this.stateMatrix = stateMatrix; } }