⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 game.java

📁 一款数独游戏的Java源代码
💻 JAVA
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -