/** This class represents a Customer of a restaurant. * The customer has a name, an age, and a food they are ordering. */ public class Customer { private String name; private String food; private int age; /** Constructs a new Customer given their name, food, and age. */ public Customer(String name, String food, int age) { this.name = name; this.food = food; this.age = age; } /** Returns the age of the Customer. */ public int getAge() { return this.age; } /** Returns the name of the Customer. */ public String getName() { return this.name; } /** Returns the food the Customer ordered. */ public String getFood() { return this.food; } /** Returns a string representation of the Customer. */ public String toString() { return this.name; } }