this is what I have now, but I get an error. I'll post the Animal abstract class below the Cat class below.
cannot find symbol
symbol : constructor Animal()
location: class Animal
CODE
public class Cat extends Animal
{
private String name;
protected String breed;
public Cat()
{
}
public String describe()
{
return new String(",a breed of Cat called" +cat);
}
public String sound()
{
return new String("Meow");
}
public String sleep()
{
return new String("Kitty is having purfect dreams!");
}
public String move()
{
return new String("This little Kitty moves fast!");
}
}
CODE
public abstract class Animal
{
public Animal(String type)
{
//super(type);
}
public abstract String describe();
public abstract String sound();
public abstract String sleep();
public abstract String move();
}
QUOTE(spullen @ 26 May, 2007 - 10:18 PM)

now implement all the functions that Animal has.