1 package bookExamples.ch18Swing.awt; 2 3 interface Movable { 4 public void move(double x, double y); 5 } 6