public interface Animal
{
	String getType();

	void setType(String type);

	String makeNoise();

	String eat();

	String activity();
}