Command.java
上传用户:sdzznc
上传日期:2022-07-23
资源大小:51k
文件大小:0k
源码类别:

绘图程序

开发平台:

Java

  1. // Copyright by Scot Drysdale
  2. package cn.edu.nju.software.grapheditor.cmd;
  3. import java.awt.Point;
  4. import cn.edu.nju.software.grapheditor.Drawing;
  5. public class Command {
  6. public void executeClick(Point p, Drawing dwg) {
  7. }
  8. public void executePress(Point p, Drawing dwg) {
  9. }
  10. public void executeDrag(Point p, Drawing dwg) {
  11. }
  12. }