// RestaurantMenu.java // Author: Lambert Lum // Emcee Lam Productions // Create your own Restaurant ordering system with 10 basic function calls. // Please see main() for an example. import java.util.*; import java.text.*; import java.awt.*; import java.awt.event.*; import javax.swing.*; import javax.swing.border.*; import javax.swing.event.*; public class RestaurantMenu extends JFrame { Container contextPain = null; JTabbedPane tabbedPane = null; // for food configurators JTabbedPane groupTabbedPane = null; // for categories JPanel foodPanel = null; RestaurantMenu refThis = this; //lets event handlers use the this pointer LinkedHashSet activeSet = null; TotalCostLabel totalCostLabel = null; public interface Priced { public float getPrice (); } // FoodConfigurator allows one to customize his food selection. public static class FoodConfigurator extends JPanel implements Priced { public String name = null; CostPanel costPanel; LinkedHashSet set; public FoodConfigurator(String name, String description) { setLayout (new BoxLayout (this, BoxLayout.Y_AXIS)); setBorder (BorderFactory.createEmptyBorder (5,5,5,5)); this.name = name; costPanel = new CostPanel(); set = new LinkedHashSet(); JTextArea descArea = new JTextArea (description); descArea.setLineWrap (false); descArea.setEditable (false); descArea.setBackground (Color.lightGray); descArea.setFont (new Font ("Serif", Font.PLAIN, 15)); super.add (descArea); super.add (new QuantityPanel(costPanel)); super.add (Box.createVerticalStrut(3)); super.add (costPanel); } public FoodConfigurator (String name, String description, float basePrice) { this (name, description); costPanel.setBasePrice (basePrice); } public String toString () { StringBuffer buf = new StringBuffer (4096); buf.append (name + "\n"); for (int j=0;j-->