//******************************************************************** // A Pig Latin Translator by Lewis and Loftus (2001) //******************************************************************** // Modified by Ian! D. Allen www.idallen.com from the original at // http://www.it-c.dk/courses/GP/F2001/Eksempler/JavaSoftwareSolutions/chap04/PigLatinTranslator.java // // Students do NOT have to add further comments to this file. // // Class Usage: // PigLatinTranslator plt; // plt = new PigLatinTranslator(); // pigline = plt.translate(line); // line is a String // // See the sample calling sequence usage in main() below. // // Command line Usage (reads from standard input): // $ java PigLatinTranslator