package InheritanceDemo;

/**
 * Appetite.java
 *
 *
 * Created: Fri Feb  9 08:50:15 2001
 *
 * @author Stuart C. Shapiro
 */

public class Appetite {
    /** The animal whose appetite is this appetite. */
   private Animal animal;

    public Appetite (Animal a){
	animal = a;
    }

    /** Causes the animal whose appetite this is to beg for food. */
    public void whet(){
	animal.beg();
	System.out.println();
    }
}// Appetite
