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

📄 setp1command.java

📁 面向对象的设计思想
💻 JAVA
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -