/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package readtextfiletest; /** * * @author jcmt */ // Fig. 17.10: ReadTextFileTest.java // Testing the ReadTextFile class. public class ReadTextFileTest { public static void main( String[] args ) { ReadTextFile application = new ReadTextFile(); application.openFile(); application.readRecords(); application.closeFile(); } // end main } // end class ReadTextFileTest