//******************************************************************** // A Pig Latin Translator by Lewis and Loftus (2001) - for Lab #7 //******************************************************************** // 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(); // line = plt.translate(line); // line is a String // // Command line Usage (reads from standard input): // $ java PigLatinTranslator