001package edu.pdx.cs410J.lang; 002 003/** 004 * This class represents a Turkey. Turkies are birds that do not fly. 005 */ 006public class Turkey extends Bird { 007 008 public Turkey(String name) { 009 this.name = name; 010 } 011 012 public String says() { 013 return "Gobble"; 014 } 015 016}