package InheritanceDemo;

/**
 * Carnivore.java
 *
 *
 * Created: Tue Feb  6 20:36:28 2001
 *
 * @author Stuart C. Shapiro
 */

abstract public class Carnivore extends Animal{
    /**
     * Constructs a carnivore with the given name,
     * and specifies that its food is meat.
     *
     * @param name This animal's name.
     */
    public Carnivore (String name){
	super(name);
	food = "meat";
    }
}// Carnivore
