public class Bird implements Animal
{
	String type;

	public Bird()
	{
		setType ("bird");
	}

	public void setType (String type)
	{
		this.type = type;
	}

	public String getType ()
	{
		return type;
	}

	public String makeNoise()
	{
		return "chirp";
	}

	public String eat()
	{
		return "bugs";
	}

	public String activity()
	{
		return "fly";
	}
}