1 package bookExamples.ch26Graphics.draw2d; 2 3 import java.awt.*; 4 5 public interface Paintable { 6 public void paint(Graphics g); 7 } 8