/Users/lyon/j4p/src/bookExamples/ch13Threads/fsm/Paintable.java

1    /** 
2     * Created by IntelliJ IDEA. 
3     * User: dlyon 
4     * Date: Feb 4, 2004 
5     * Time: 3:50:59 PM 
6     * To change this template use Options | File Templates. 
7     */ 
8    package bookExamples.ch13Threads.fsm; 
9     
10   import java.awt.*; 
11    
12   public interface Paintable { 
13       public void paint(Graphics g); 
14   } 
15