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:42:03 PM 9 */ 10 public interface WaterInterface { 11 boolean isWet(); 12 boolean isDirty(); 13 } 14