System.out.println("Invoice");
System.out.println("-------");
System.out.println();
System.out.println("Ship To:");
ShipTo shipTo = invoice.getShipTo();
System.out.println(" " + shipTo.getCustomer().getName());
AddressElement address = shipTo.getCustomer().getAddressElement();
System.out.println(" " + address.getStreet1());
String street2 = address.getSecondStreet();
if (street2 != null) {
System.out.println(" " + street2);
}
System.out.print(" " + address.getCity());
System.out.print(", " + address.getState());
System.out.println(" " + address.getZipCode());
System.out.println(" " + shipTo.getCustomer().getPhone());
System.out.println();
System.out.println("Item:");
Item[] item = invoice.getItem();
for (int i = 0; i < item.length; i++) {