import java.awt.*; interface Drawer{ void draw(Graphics g, Rectangle r); void begin(); void end(); } // EOF