// Main application class to perform the input and display of address data // Version 1.00 // Created by J.Weigmann 06th April 2007 import java.io.*; public class JWAddressApp { public static void main(String[] args) throws IOException { // Display welcome message for the calculating application System.out.println("\n\n\t\t Hello to the Address Display Program Program\n"); // Create Object for User input JWAddressInput InputUserdata = new JWAddressInput(); InputUserdata.InputValidation(); } } // end of the main application class