// Command.java // Superclass for commands. // Provides empty definitions for the methods executeClick, executePress, // and executeDrag. // Written by THC for CS 5 HW 3. Modifed by Scot Drysdale for VoronoiTool import java.awt.*; public class Command { public void executeClick(Point p, Drawing dwg) { } public void executePress(Point p, Drawing dwg) { } public void executeDrag(Point p, Drawing dwg) { } public void executeMove(Point p, Drawing dwg) { } }