public class Cat implements Animal
{
	private String type;

	public Cat()
	{
		setType("cat");
	}

	public String getType()
	{
		return type;
	}

	public void setType(String type)
	{
		this.type = type;
	}

	public String makeNoise()
	{	return "meow";
	}

	public String eat()
	{	return "mice";
	}

	public String activity()
	{	return "nap";
	}

}