📄 game.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 + -