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:35:49 PM 9 */ 10 public class Water implements WaterInterface { 11 private static final boolean wet = true; 12 13 public boolean isDirty() { 14 return false; 15 } 16 17 public boolean isWet() { 18 return wet; 19 } 20 } 21