//******************************************************************** // BusinessEntity.java // Represents a business. //******************************************************************** public class BusinessEntity { private String ownerFirstName, ownerLastName, businessName; //----------------------------------------------------------------- // Sets up this BusinessEntity object with the specified initial values. //----------------------------------------------------------------- public BusinessEntity (String oFirstName, String oLastName, String bName) { } //----------------------------------------------------------------- // Returns this BusinessEntity object as a string. //----------------------------------------------------------------- public String toString() { String result; result = "Owner's name: " + ownerLastName + "\n"; result = "Business Name: " + businessName; } }