/** Interface for any BusinessContact Object. */ public interface BusinessContact { /** Change the address of this Contact */ public void setAddress(String address); /** Return the name of this contact */ public String getName( ); /** Return the address of this contact */ public String getAddress( ); }