/** * Write a description of class PigLatin here. * * @author (your name) * @version (a version number or a date) */ public class PigLatin { /* * Precondition: letter is a String containing a single character. * Postcondition: returns true if letter is a,A,e,E,i,I,o,O,u or U and false otherwise. * */ public static boolean isVowel(String letter) { letter = letter.toLowerCase(); return false; // This statement is provided to allow initial compiling. } /* * Precondition: s is a String containing a single word. * Postcondition: returns a word converted into Pig Latin according to the appropriate rule. * */ public static String convertWord(String s) { return ""; // This statement is provided to allow initial compiling. } }