1 28 29 package simple; 30 31 import java.util.ArrayList ; 32 33 public class Customer3 34 { 35 public Name name = new Name(); 36 public String street1; 37 public String city; 38 public String state; 39 public String zip; 40 public String phone; 41 public Customer3 referral; 42 public Object oreferral; 43 public ArrayList orderIds; 44 45 public static Name nameFactory() { 46 throw new IllegalStateException ("Name factory should not be called"); 47 } 48 } 49 | Popular Tags |