setp1command.java
来自「面向对象的设计思想」· Java 代码 · 共 18 行
JAVA
18 行
public class SetP1Command extends Command {
int x,y;
/** Creates new AddCustomerCommand */
public SetP1Command(int x,int y) {
this.x= x;
this.y=y;
}
public void execute(DrawModel draw) {
try {
draw.setP1(x,y);
}
catch (Exception ex) {
this.excep = ex;
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?