import SimpleOutput; import StreetAddress; /** * Contains the detailed information about an address. * @author Khong Lovan * @author Elias Vafiadis * @author Anthony Nakaar * @author Wanlin Liu * version 1.0 of October, 1999 */ public class StreetAddressTest { public static void main(String[] args){ SimpleOutput out = new SimpleOutput(); StreetAddress str = new StreetAddress("470 Prospect Street,New Haven,CT,06511,USA,2036249369"); StreetAddress newAdd = new StreetAddress(str.toString()); out.println(newAdd.toString()); }//main }//class StreetAddressTest()