//**************************************** // Program Name: soundexdriver.java * // Author: Pat Moss * // Date: Nov 12, 2005 Rev. 02 * // * // Driver for the calcsoundex.java class * //**************************************** // Create a calcsoundex object, and then // Request user input data strings, and // Calculate and display Soundex codes public class soundexdriver { public static void main (String[] args) { calcsoundex calcsoundex1 = new calcsoundex(); System.out.println ("soundexdriver.java rev. 02 by pat moss"); // Request user input data strings, and // Calculate and display Soundex codes calcsoundex1.getUserData(); System.out.println ("All Done..."); } }