game.java

来自「一款数独游戏的Java源代码」· Java 代码 · 共 49 行

JAVA
49
字号
package entity;/** * @author   yangan */public class Game {	private AbstractPolicy policy;	@Deprecated	public Game(AbstractPolicy policy) {		super();		this.policy = policy;	}	/**	 * @return   Returns the policy.	 * @uml.property   name="policy"	 */	@Deprecated	public AbstractPolicy getPolicy() {		return policy;	}	@Deprecated	public boolean setValue(int xIndex, int yIndex, String value) {		return this.policy.setValueByIndex(xIndex, yIndex, value);	}	@Deprecated	public void init() {		policy.initOriginal();		policy.initAllCellList();		policy.initAllCells();	}	@Deprecated	public void excute() {		this.policy.excute();	}	@Deprecated	@Override	public String toString() {		return this.getPolicy().toString();	}}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?