public class Word { /** Tests whether a letter is a vowel @param letter a string of length 1 @return true if letter is a vowel */ public boolean isVowel(String letter) { return false; } }