/Users/lyon/j4p/src/bookExamples/ch25Delegation/PollutedWaterInterface.java

1    package bookExamples.ch25Delegation; 
2     
3    /** 
4     * DocJava, Inc. 
5     * http://www.docjava.com 
6     * Programmer: dlyon 
7     * Date: Oct 13, 2004 
8     * Time: 7:38:49 PM 
9     */ 
10   public interface PollutedWaterInterface 
11           extends PollutionInterface, WaterInterface { 
12    
13   } 
14