3

I'm a Java newbie. I am in a college intro Java course, and I'm at a point now where none of my programs are working.

This point is at the GUI creation chapter. I'm not sure what I'm doing wrong. I've been working on this non-stop for over a week and no progress. I've searched far and wide across the Java forums, YouTube videos, previous StackOverflow questions, Oracle demos and tutorials; I updated my Java JDK to 1.7 just in case, and nothing has worked.

First I should mention that I was previously having a problem where it would say "javaw.exe has encountered a problem and needs to close," but this proglem seems to have disappeared after updating to 1.7 I'm okay on that. I am running the program in the IDE Eclipse helios.

I decided to try and change the program to a JApplet to see if this would help, but it hasn't. I tried debugging but it won't even let me finish debugging. What am I doing wrong? When I run the JApplet, I get ouput on the console, but StackOverflow won't let me post it.

Here is a copy of my code. The javadocs aren't finished, and I apologize for this. I have just made so many changes trying to fix things that I haven't been able to keep up at the pace of creating all the javadocs. I should also warn you that I did create an input format validation (do-while try-catch), but I have omitted this here because first I'm trying to figure out what I'm doing wrong before moving on to adding this. I also apologize for the sloppy indentations in the code. somehow it didn't transfer very well on to the StackOverflow website.

package assignment12;
/*
 * File: CalculateBill.java
 * ------------------------
 * This program calculates a table's bill at a restaurant.
 * The program uses a frame user interface with the following components: 
 * input textfields for the waiter name and table number
 * four interactive combo boxes for each category of the menu containing all the menu items
 * a listbox that keeps track of menu item that is ordered
 * buttons that allow the user to delete an item or clear all the items on the listbox
 * a textarea that displays the table and waiter name entered 
 * a label that refreshes the total, subtotal, and tax when an item is entered or deleted
 * a restaurant logo for "Charlotte's Apple tree restaurant"
 */
import java.util.*;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
/* CalculateBill.java uses these additional files:
 * images/appletree.gif
 */
/**
 * 
 * @version 1.7 
 * @since 2011年11月21日 
 */
@SuppressWarnings("serial")
public class CalculateBill extends JPanel implements ActionListener {
 JComboBox beverageList;
 JComboBox appetizerList;
 JComboBox dessertList;
 JComboBox maincourseList;
 JLabel restaurantLogo;
 JTextField textTableNum; //where the table number is entered
 JTextField waiterName; //where the waiter name is entered
 JTextArea textArea;//where the waiter name and table number appears at the bottem
 JLabel waiter;
 JLabel table;
 DefaultListModel model;//model 
 JList list; // list 
 static int tableNum = 0; // setting table number to an integer outside the range (1-10) keeps loop going until 
 // valid user entry in textTableNum textfield
 String tn; //string value of table number
 String wn; //string value of waiter name
 JScrollPane scrollpane;
 public double subtotal = 0.00;
 public double tax = 0.00;
 public double total = 0.00;
 JLabel totallabel;
 CalculateBill() {
 super(new BorderLayout());
 //create and set up the window.
 JFrame frame = new JFrame("Charlotte's Appletree Restaurant");
 frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
 frame.setPreferredSize(new Dimension(300, 600));
 String[] beverages = {"Beverages", "Soda", "Tea", "Coffee", "Mineral Water", "Juice", "Milk"};
 String[] appetizers = {"Appetizers", "Buffalo Wings", "Buffalo Fingers", "Potato Skins", "Nachos", "Mushroom Caps", "Shrimp Cocktail", "Chips and Salsa"};
 String[] maincourses = {"Main Courses", "Seafood Alfredo", "Chicken Alfredo", "Chicken Picatta", "Turkey Club", "Lobster Pie", "Prime Rib", "Shrimp Scampi", "Turkey Dinner", "Stuffed Chicken"};
 String[] desserts = {"Desserts", "Apple Pie", "Sundae", "Carrot Cake", "Mud Pie", "Apple Crisp"};
 /*create the combo boxes, selecting the first item at index 0.
 indices start at 0, so so 0 is the name of the combo box*/
 // beverages combobox
 beverageList = new JComboBox(beverages);
 beverageList.setEditable(false);
 beverageList.setSelectedIndex(0);
 add(new JLabel(" Beverages:"), BorderLayout.CENTER);
 add(beverageList, BorderLayout.CENTER);
 // appetizers combobox
 appetizerList = new JComboBox(appetizers);
 appetizerList.setEditable(false);
 appetizerList.setSelectedIndex(0);
 add(new JLabel(" Appetizers:"), BorderLayout.CENTER);
 add(appetizerList, BorderLayout.CENTER);
 // maincourses combobox
 maincourseList = new JComboBox(maincourses);
 maincourseList.setEditable(false);
 maincourseList.setSelectedIndex(0);
 add(new JLabel(" Main courses:"), BorderLayout.CENTER);
 add(maincourseList, BorderLayout.CENTER);
 // desserts combox
 dessertList = new JComboBox(desserts);
 dessertList.setEditable(false);
 dessertList.setSelectedIndex(0);
 add(new JLabel(" Desserts:"), BorderLayout.CENTER);
 add(dessertList, BorderLayout.CENTER);
 // listbox
 model = new DefaultListModel();
 JPanel listPanel = new JPanel();
 list = new JList(model);
 list.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
 list.setBorder(BorderFactory.createEmptyBorder(2, 2, 2, 2));
 // list box continued
 JScrollPane listPane = new JScrollPane();
 listPane.getViewport().add(list);
 listPanel.setBorder(BorderFactory.createEmptyBorder(20, 20, 20, 20));
 listPanel.add(listPane);
 // total label
 totallabel = new JLabel(setTotalLabelAmount());
 add((totallabel), BorderLayout.SOUTH);
 totallabel.setVisible(false);
 // sets up listbox buttons
 add(new JButton("Delete"), BorderLayout.SOUTH);
 add(new JButton("Clear All"), BorderLayout.SOUTH);
 // sets up restaurant logo
 restaurantLogo = new JLabel();
 restaurantLogo.setFont(restaurantLogo.getFont().deriveFont(Font.ITALIC));
 restaurantLogo.setBorder(BorderFactory.createEmptyBorder(10, 0, 0, 0));
 restaurantLogo.setPreferredSize(new Dimension(123, 200 + 10));
 ImageIcon icon = createImageIcon("images/appletree.gif");
 restaurantLogo.setIcon(icon);
 restaurantLogo.setText("Charlotte's Apple Tree Restaurant");
 add((restaurantLogo), BorderLayout.NORTH);
 // sets up the label next to textfield for table number
 table = new JLabel(" Enter Table Number (1-10):");
 /**
 * @throws InputMismatchException if the textfield entry is not an integer
 *
 */
 // sets up textfield next to table lable
 table.setLabelFor(textTableNum);
 add((table), BorderLayout.NORTH);
 // sets up label for waiter name
 waiter = new JLabel(" Enter Waiter Name: ");
 // sets up textfield next to waiter lable
 waiter.setLabelFor(waiterName);
 add((waiter), BorderLayout.NORTH);
 // listens to the textfields
 textTableNum.addActionListener(this);
 waiterName.addActionListener(this);
 // sets up textarea
 textArea = new JTextArea(5, 10);
 textArea.setEditable(false);
 JScrollPane scrollPane = new JScrollPane(textArea);
 // lays out listpanel
 listPanel.setLayout(new GridBagLayout());
 GridBagConstraints c = new GridBagConstraints();
 c.gridwidth = GridBagConstraints.REMAINDER;
 c.fill = GridBagConstraints.HORIZONTAL;
 add(listPane, c);
 c.fill = GridBagConstraints.BOTH;
 c.weightx = 1.0;
 c.weighty = 1.0;
 add(scrollPane, c);
 scrollPane.setVisible(true);
 }
 private double getPrices(String item) {
 // create hashmap to store menu items with their corresponding prices
 HashMap<String, Double> hm = new HashMap<String, Double>();
 // put elements to the map
 hm.put("Soda", new Double(1.95));
 hm.put("Tea", new Double(1.50));
 hm.put("Coffee", new Double(1.25));
 hm.put("Mineral Water", new Double(2.95));
 hm.put("Juice", new Double(2.50));
 hm.put("Milk", new Double(1.50));
 hm.put("Buffalo Wings", new Double(5.95));
 hm.put("Buffalo Fingers", new Double(6.95));
 hm.put("Potato Skins", new Double(8.95));
 hm.put("Nachos", new Double(8.95));
 hm.put("Mushroom Caps", new Double(10.95));
 hm.put("Shrimp Cocktail", new Double(12.95));
 hm.put("Chips and Salsa", new Double(6.95));
 hm.put("Seafood Alfredo", new Double(15.95));
 hm.put("Chicken Alfredo", new Double(13.95));
 hm.put("Chicken Picatta", new Double(13.95));
 hm.put("Turkey Club", new Double(11.95));
 hm.put("Lobster Pie", new Double(19.95));
 hm.put("Prime Rib", new Double(20.95));
 hm.put("Shrimp Scampi", new Double(18.95));
 hm.put("Turkey Dinner", new Double(13.95));
 hm.put("Stuffed Chicken", new Double(14.95));
 hm.put("Apple Pie", new Double(5.95));
 hm.put("Sundae", new Double(3.95));
 hm.put("Carrot Cake", new Double(5.95));
 hm.put("Mud Pie", new Double(4.95));
 hm.put("Apple Crisp", new Double(5.95));
 double price = hm.get(item);
 return price;
 }
 /**
 * validates that the correct path for the image was found to prevent crash
 *
 * @param path is the icon path of the restaurant logo
 *
 * @return nothing if you can't find the image file
 *
 * @return imageIcon(imgURL) the path to image if you can find it
 */
 protected static ImageIcon createImageIcon(String path) {
 java.net.URL imgURL = CalculateBill.class.getResource(path);
 if (imgURL != null) {
 return new ImageIcon(imgURL);
 } else {
 JOptionPane.showMessageDialog(null, "Couldn't find file: "
 + path, "image path error", JOptionPane.ERROR_MESSAGE);
 return null;
 }
 }
 //Listens to the combo boxes 
 private void getSelectedMenuItem(JComboBox cb) {
 String mnItem = (String) cb.getSelectedItem();
 updateListBox(mnItem);
 }
 /**
 * updates the list box
 * 
 * @param name the element to be added to the list box
 */
 private void updateListBox(String name) {
 totallabel.setVisible(false);
 model.addElement(name);
 Addition(getPrices(name));
 totallabel.setVisible(true);
 }
 void showWaiterAndTableNum() {
 textArea.append("Table Number: " + tn + " Waiter: " + wn);
 textArea.setCaretPosition(textArea.getDocument().getLength());
 }
 /**
 * adds to the subtotal/total calculator.
 *
 * @param s The name of the menu item which will be used to access its hashmap key value. 
 *
 */
 private void Addition(double addedP) {
 subtotal = subtotal + addedP;
 tax = .0625 * subtotal;
 total = subtotal + tax;
 }
 /**
 * subtracts from to the subtotal/total calculator.
 *
 * @param subtractedp The price of the menu item which will be used to access its hashmap key value. 
 *
 */
 // sets up the 'total' label which shows subtotal, tax, total
 private void Subtraction(double subtractedp) {
 subtotal = subtotal - subtractedp;
 tax = subtotal * .0625;
 total = subtotal + tax;
 }
 private void resetCalculator() {
 subtotal = 0.00;
 tax = 0.00;
 total = 0.00;
 }
 // listens to list buttons
 @Override
 public void actionPerformed(ActionEvent e) {
 JTextField tf = (JTextField) e.getSource();
 if (tf.equals("textTableNum")) {
 tn = tf.getText();
 } else if (tf.equals("waiterName")) {
 wn = tf.getText();
 }
 String cmd = e.getActionCommand();
 if (cmd.equals("Delete")) {
 totallabel.setVisible(false);
 ListSelectionModel selmodel = list.getSelectionModel();
 int index = selmodel.getMinSelectionIndex();
 String foodName = (String) list.getSelectedValue();
 Subtraction(getPrices(foodName));
 totallabel.setVisible(true);
 //subtracts from the subtotal
 if (index >= 0) {
 model.remove(index);
 }
 } else if (cmd.equals("Clear all")) {
 model.clear();
 resetCalculator();
 }
 }
 //combobox mouse listener
 public void mouseClicked(MouseEvent e) {
 if (e.getClickCount() == 2) {
 JComboBox cb = (JComboBox) e.getSource();
 getSelectedMenuItem(cb);
 }
 }
 private String setTotalLabelAmount() {
 String totlab = "Subtotal: $ " + subtotal + " Tax: $" + tax + "\n" + "Total: $ " + total;
 return totlab;
 }
}
**my applet:**
package assignment12;
import javax.swing.JApplet;
import javax.swing.SwingUtilities;
@SuppressWarnings("serial")
public class Main extends JApplet {
 /**
 * @param args
 */
 public void init() {
 // schedule job for event-dispatching
 //while showing Aplication GUI
 try {
 SwingUtilities.invokeLater(new Runnable() {
 public void run() {
 createAndShowGUI();
 }
 });
 } catch (Exception e) {
 System.err.println("createAndShowGUI didn't complete successfully");
 }
 }
 // create and show GuI
 private void createAndShowGUI() {
 //Create and set up the content pane.
 CalculateBill newContentPane = new CalculateBill();
 newContentPane.setOpaque(true); //content panes must be opaque
 setContentPane(newContentPane);
 }
}
trashgod
206k33 gold badges265 silver badges1.1k bronze badges
asked Nov 26, 2011 at 4:47
39
  • 1
    Have you gotten a small, minimal GUI app running? Commented Nov 26, 2011 at 4:58
  • "I decided to try and change the program to a JApplet to see if this would help" It introduces more challenges. Change it back. Commented Nov 26, 2011 at 5:02
  • your error from the console isn't showing in your post Commented Nov 26, 2011 at 5:03
  • the applet viewer appears. and that's all. Commented Nov 26, 2011 at 5:03
  • Exception in thread "AWT-EventQueue-1" java.lang.NullPointerException Commented Nov 26, 2011 at 5:04

3 Answers 3

4

Well, on the one hand "what isn't wrong" comes to mind, but in truth you've come quite away.

There are several issues going on here. I've only taken a stab at some of them.

It would be easier to subclass JPanel than JFrame. Create a panel, and add it to a frame. See Eric's answer on how to structure that, and see the main method below.

You have two missing JTextFields: textTableNum, and waiterName. First thing I got build this up is an NPE at these two locations. Next, your constraints are wrong for the GridBag. I am not a GridBag person. GridBag gives me hives, so I can't say what's wrong with those, so I eliminated the constraints and replaced them with 'null'. Once I did this, I at least got a frame and a GUI.

Next, all of your BorderLayout code is wrong. When you specify a location on a Border Layout, that's exactly what you are doing -- specifying a location. If you put 3 things in BorderLayout.NORTH, they will all go up there, and layer on top of each other (that it you will see only one of them). So, clearly, all of your layout code needs a lot of work.

After some butchery, we have this:

package soapp;
/*
 * File: CalculateBill.java
 * ------------------------
 * This program calculates a table's bill at a restaurant.
 * The program uses a frame user interface with the following components:
 * input textfields for the waiter name and table number
 * four interactive combo boxes for each category of the menu containing all the menu items
 * a listbox that keeps track of menu item that is ordered
 * buttons that allow the user to delete an item or clear all the items on the listbox
 * a textarea that displays the table and waiter name entered
 * a label that refreshes the total, subtotal, and tax when an item is entered or deleted
 * a restaurant logo for "Charlotte's Apple tree restaurant"
 */
import java.util.*;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
/* CalculateBill.java uses these additional files:
 * images/appletree.gif
 */
/**
 *
 * @version 1.7
 * @since 2011年11月21日
 */
@SuppressWarnings("serial")
public class CalculateBill extends JPanel implements ActionListener {
 JComboBox beverageList;
 JComboBox appetizerList;
 JComboBox dessertList;
 JComboBox maincourseList;
 JLabel restaurantLogo;
 JTextField textTableNum; //where the table number is entered
 JTextField waiterName; //where the waiter name is entered
 JTextArea textArea;//where the waiter name and table number appears at the bottem
 JLabel waiter;
 JLabel table;
 DefaultListModel model;//model
 JList list; // list
 static int tableNum = 0; // setting table number to an integer outside the range (1-10) keeps loop going until
 // valid user entry in textTableNum textfield
 String tn; //string value of table number
 String wn; //string value of waiter name
 JScrollPane scrollpane;
 public double subtotal = 0.00;
 public double tax = 0.00;
 public double total = 0.00;
 JLabel totallabel;
 public static void main(String[] args) {
 // TODO code application logic here
 JFrame frame = new JFrame("SO App");
 frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
 CalculateBill cb = new CalculateBill();
 frame.getContentPane().add(cb);
 frame.pack();
 frame.setVisible(true);
 }
 CalculateBill() {
 super(new BorderLayout());
 JPanel panel;
 //create and set up the window.
// JFrame frame = new JFrame("Charlotte's Appletree Restaurant");
// frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
// frame.setPreferredSize(new Dimension(300, 600));
 setLayout(new BoxLayout(this, BoxLayout.PAGE_AXIS));
 String[] beverages = {"Beverages", "Soda", "Tea", "Coffee", "Mineral Water", "Juice", "Milk"};
 String[] appetizers = {"Appetizers", "Buffalo Wings", "Buffalo Fingers", "Potato Skins", "Nachos", "Mushroom Caps", "Shrimp Cocktail", "Chips and Salsa"};
 String[] maincourses = {"Main Courses", "Seafood Alfredo", "Chicken Alfredo", "Chicken Picatta", "Turkey Club", "Lobster Pie", "Prime Rib", "Shrimp Scampi", "Turkey Dinner", "Stuffed Chicken"};
 String[] desserts = {"Desserts", "Apple Pie", "Sundae", "Carrot Cake", "Mud Pie", "Apple Crisp"};
 /*create the combo boxes, selecting the first item at index 0.
 indices start at 0, so so 0 is the name of the combo box*/
 // beverages combobox
 panel = new JPanel();
 panel.setLayout(new BoxLayout(panel, BoxLayout.LINE_AXIS));
 beverageList = new JComboBox(beverages);
 beverageList.setEditable(false);
 beverageList.setSelectedIndex(0);
 panel.add(new JLabel(" Beverages:"), BorderLayout.CENTER);
 panel.add(beverageList, BorderLayout.CENTER);
 add(panel);
 // appetizers combobox
 panel = new JPanel();
 panel.setLayout(new BoxLayout(panel, BoxLayout.LINE_AXIS));
 appetizerList = new JComboBox(appetizers);
 appetizerList.setEditable(false);
 appetizerList.setSelectedIndex(0);
 panel.add(new JLabel(" Appetizers:"), BorderLayout.CENTER);
 panel.add(appetizerList, BorderLayout.CENTER);
 // maincourses combobox
 panel = new JPanel();
 panel.setLayout(new BoxLayout(panel, BoxLayout.LINE_AXIS));
 maincourseList = new JComboBox(maincourses);
 maincourseList.setEditable(false);
 maincourseList.setSelectedIndex(0);
 panel.add(new JLabel(" Main courses:"), BorderLayout.CENTER);
 panel.add(maincourseList, BorderLayout.CENTER);
 add(panel);
 // desserts combox
 panel = new JPanel();
 panel.setLayout(new BoxLayout(panel, BoxLayout.LINE_AXIS));
 dessertList = new JComboBox(desserts);
 dessertList.setEditable(false);
 dessertList.setSelectedIndex(0);
 panel.add(new JLabel(" Desserts:"), BorderLayout.CENTER);
 panel.add(dessertList, BorderLayout.CENTER);
 add(panel);
 // listbox
 model = new DefaultListModel();
 JPanel listPanel = new JPanel();
 list = new JList(model);
 list.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
 list.setBorder(BorderFactory.createEmptyBorder(2, 2, 2, 2));
 // list box continued
 JScrollPane listPane = new JScrollPane();
 listPane.getViewport().add(list);
 listPanel.setBorder(BorderFactory.createEmptyBorder(20, 20, 20, 20));
 listPanel.add(listPane);
 add(listPanel);
 // total label
 panel = new JPanel();
 panel.setLayout(new BoxLayout(panel, BoxLayout.LINE_AXIS));
 totallabel = new JLabel(setTotalLabelAmount());
 panel.add((totallabel), BorderLayout.SOUTH);
 totallabel.setVisible(false);
 add(panel);
 panel = new JPanel();
 panel.setLayout(new BoxLayout(panel, BoxLayout.LINE_AXIS));
 // sets up listbox buttons
 panel.add(new JButton("Delete"), BorderLayout.SOUTH);
 panel.add(new JButton("Clear All"), BorderLayout.SOUTH);
 add(panel);
 // sets up restaurant logo
// restaurantLogo = new JLabel();
// restaurantLogo.setFont(restaurantLogo.getFont().deriveFont(Font.ITALIC));
// restaurantLogo.setBorder(BorderFactory.createEmptyBorder(10, 0, 0, 0));
// restaurantLogo.setPreferredSize(new Dimension(123, 200 + 10));
// ImageIcon icon = createImageIcon("images/appletree.gif");
// restaurantLogo.setIcon(icon);
// restaurantLogo.setText("Charlotte's Apple Tree Restaurant");
// add((restaurantLogo), BorderLayout.NORTH);
 // sets up the label next to textfield for table number
 panel = new JPanel();
 panel.setLayout(new BoxLayout(panel, BoxLayout.LINE_AXIS));
 table = new JLabel(" Enter Table Number (1-10):");
 /**
 * @throws InputMismatchException if the textfield entry is not an integer
 *
 */
 // sets up textfield next to table lable
 textTableNum = new JTextField();
 table.setLabelFor(textTableNum);
 panel.add((table), BorderLayout.NORTH);
 panel.add(textTableNum, BorderLayout.NORTH);
 add(panel);
 // sets up label for waiter name
 panel = new JPanel();
 panel.setLayout(new BoxLayout(panel, BoxLayout.LINE_AXIS));
 waiter = new JLabel(" Enter Waiter Name: ");
 waiterName = new JTextField();
 // sets up textfield next to waiter lable
 waiter.setLabelFor(waiterName);
 panel.add((waiter), BorderLayout.NORTH);
 panel.add(waiterName, BorderLayout.NORTH);
 add(panel);
 // listens to the textfields
 textTableNum.addActionListener(this);
 waiterName.addActionListener(this);
 // sets up textarea
 textArea = new JTextArea(5, 10);
 textArea.setEditable(false);
 JScrollPane scrollPane = new JScrollPane(textArea);
 // lays out listpanel
// listPanel.setLayout(new GridBagLayout());
// GridBagConstraints c = new GridBagConstraints();
// c.gridwidth = GridBagConstraints.REMAINDER;
// c.fill = GridBagConstraints.HORIZONTAL;
// add(listPane, c);
// add(listPane, null);
// c.fill = GridBagConstraints.BOTH;
// c.weightx = 1.0;
// c.weighty = 1.0;
// add(scrollPane, c);
 add(scrollPane, null);
 scrollPane.setVisible(true);
 }
 private double getPrices(String item) {
 // create hashmap to store menu items with their corresponding prices
 HashMap<String, Double> hm = new HashMap<String, Double>();
 // put elements to the map
 hm.put("Soda", new Double(1.95));
 hm.put("Tea", new Double(1.50));
 hm.put("Coffee", new Double(1.25));
 hm.put("Mineral Water", new Double(2.95));
 hm.put("Juice", new Double(2.50));
 hm.put("Milk", new Double(1.50));
 hm.put("Buffalo Wings", new Double(5.95));
 hm.put("Buffalo Fingers", new Double(6.95));
 hm.put("Potato Skins", new Double(8.95));
 hm.put("Nachos", new Double(8.95));
 hm.put("Mushroom Caps", new Double(10.95));
 hm.put("Shrimp Cocktail", new Double(12.95));
 hm.put("Chips and Salsa", new Double(6.95));
 hm.put("Seafood Alfredo", new Double(15.95));
 hm.put("Chicken Alfredo", new Double(13.95));
 hm.put("Chicken Picatta", new Double(13.95));
 hm.put("Turkey Club", new Double(11.95));
 hm.put("Lobster Pie", new Double(19.95));
 hm.put("Prime Rib", new Double(20.95));
 hm.put("Shrimp Scampi", new Double(18.95));
 hm.put("Turkey Dinner", new Double(13.95));
 hm.put("Stuffed Chicken", new Double(14.95));
 hm.put("Apple Pie", new Double(5.95));
 hm.put("Sundae", new Double(3.95));
 hm.put("Carrot Cake", new Double(5.95));
 hm.put("Mud Pie", new Double(4.95));
 hm.put("Apple Crisp", new Double(5.95));
 double price = hm.get(item);
 return price;
 }
 /**
 * validates that the correct path for the image was found to prevent crash
 *
 * @param path is the icon path of the restaurant logo
 *
 * @return nothing if you can't find the image file
 *
 * @return imageIcon(imgURL) the path to image if you can find it
 */
 protected static ImageIcon createImageIcon(String path) {
 java.net.URL imgURL = CalculateBill.class.getResource(path);
 if (imgURL != null) {
 return new ImageIcon(imgURL);
 } else {
 JOptionPane.showMessageDialog(null, "Couldn't find file: " + path, "image path error", JOptionPane.ERROR_MESSAGE);
 return null;
 }
 }
 //Listens to the combo boxes
 private void getSelectedMenuItem(JComboBox cb) {
 String mnItem = (String) cb.getSelectedItem();
 updateListBox(mnItem);
 }
 /**
 * updates the list box
 *
 * @param name the element to be added to the list box
 */
 private void updateListBox(String name) {
 totallabel.setVisible(false);
 model.addElement(name);
 Addition(getPrices(name));
 totallabel.setVisible(true);
 }
 void showWaiterAndTableNum() {
 textArea.append("Table Number: " + tn + " Waiter: " + wn);
 textArea.setCaretPosition(textArea.getDocument().getLength());
 }
 /**
 * adds to the subtotal/total calculator.
 *
 * @param s The name of the menu item which will be used to access its hashmap key value.
 *
 */
 private void Addition(double addedP) {
 subtotal = subtotal + addedP;
 tax = .0625 * subtotal;
 total = subtotal + tax;
 }
 /**
 * subtracts from to the subtotal/total calculator.
 *
 * @param subtractedp The price of the menu item which will be used to access its hashmap key value.
 *
 */
 // sets up the 'total' label which shows subtotal, tax, total
 private void Subtraction(double subtractedp) {
 subtotal = subtotal - subtractedp;
 tax = subtotal * .0625;
 total = subtotal + tax;
 }
 private void resetCalculator() {
 subtotal = 0.00;
 tax = 0.00;
 total = 0.00;
 }
 // listens to list buttons
 @Override
 public void actionPerformed(ActionEvent e) {
 JTextField tf = (JTextField) e.getSource();
 if (tf.equals("textTableNum")) {
 tn = tf.getText();
 } else if (tf.equals("waiterName")) {
 wn = tf.getText();
 }
 String cmd = e.getActionCommand();
 if (cmd.equals("Delete")) {
 totallabel.setVisible(false);
 ListSelectionModel selmodel = list.getSelectionModel();
 int index = selmodel.getMinSelectionIndex();
 String foodName = (String) list.getSelectedValue();
 Subtraction(getPrices(foodName));
 totallabel.setVisible(true);
 //subtracts from the subtotal
 if (index >= 0) {
 model.remove(index);
 }
 } else if (cmd.equals("Clear all")) {
 model.clear();
 resetCalculator();
 }
 }
 //combobox mouse listener
 public void mouseClicked(MouseEvent e) {
 if (e.getClickCount() == 2) {
 JComboBox cb = (JComboBox) e.getSource();
 getSelectedMenuItem(cb);
 }
 }
 private String setTotalLabelAmount() {
 String totlab = "Subtotal: $ " + subtotal + " Tax: $" + tax + "\n" + "Total: $ " + total;
 return totlab;
 }
}

This is not representative code of, well, anything. It's sole capability is that it functions to at least show something like what you were looking for.

Also note I commented out all of the logo code, since I didn't have the image file - I just punted on that part for the sake of expediency.

What it does is it create a JPanel subclass. That panel has a BoxLayout, that lines up vertically. You misunderstand how the BorderLayout works by putting multiple components in to the same slot. For example, you but both the 'Delete' and 'Clear All' JButton in to the BorderLayout.SOUTH. That means they both consume the same space, in the end one ends up on top of the other so it looks like only one component.

A BoxLayout has a Flow, that is as you add components to them, the components do not overlap and get added and expand the space. The basic JPanels layout is a vertical BoxLayout, so that as components are added, they will stack and appear in rows.

Next, a common idiom in Swing, especially with hand made GUIs, is you use JPanels as containers. If you ever used a drawing program and use the Group function to turn, say, 4 lines in to a single box, the JPanel in Swing and layouts works the same way. Each JPanel has its own layout, and then once completed, the JPanel is treated as a whole.

So, here I used the BoxLayout again, only this time using the LINE_AXIS style, which puts components end to end, laying them out in a line.

You can see I create several JPanels, set the layout to the BoxLayout, then add components to each individual JPanel, and then add these JPanels to the master JPanel. The components in the individual JPanels lay out end to end, but as they are added to the master JPanel, its BoxLayout stacks them top to bottom.

Note that the remnants of your BorderLayout details remains, because I didn't clean that up. I would remove all of that.

This is where I stopped, as the code compiles and shows the GUI, which should at least give you something to work with other than 400 lines of black box "nothings happening" code. It likely does not look quite like you imagined, that wasn't my goal either. I would play with the JPanel and sub-JPanel idiom and the layout managers until you get closer to what you want. The Java Swing tutorial linked from the Javadoc for Swing is pretty good, if a bit scattered. So, more reading is in store.

As others have mentioned, when starting out something like thing, you would be best to start off small (like getting 2 of the drop down boxes to work). Then you would only have a couple of things to focus on to get those to work, and then you can build on that toward a final project.

I hope this is helpful to get you on your way.

answered Nov 26, 2011 at 6:06
Sign up to request clarification or add additional context in comments.

4 Comments

yes. that's weird. I knew there was something that had to be wrong about that borderlayout. i watched this video from stanford online about intro to java and he said that it depended on the order in which you added it and that it wouldn't overlap. i originally was doing it differently but since he (the teacher) made it sound so simple i tried that. and now i'm sorry that i did.....I also think it is because borderlayout was not what he was using. he was using an acm.program library.
The behaviour you talk about is true for some layout managers. For example FlowLayout.
Eric- a ha! flow layout! that's what it was probably. @Will I will be trying this boxlayout today. I actually think i did try it before, in fact, i think i tried every layout java even offers (i even tried the springlayout via spring utilities....which looked nice, but did nothing!...i probably just wasn't doing any of them correctly. who are we kidding, i was definitely doing them incorrectly. i was mixing them all together. that isn't allowed....is it ? hopefully this post/comments helps some other confused java student.
Okay, so i finally got all the components up the way i want them! the boxlayout really helped. i also used a flowlayout for the image logo. looks beautiful. but now my actionListeners are not working. I don't understand how this is supposed to work. do they go in the main method? many of the examples i've seen are all different. one had actionListener and performed together in the same method and one example showed them apart.
2

It seems there are a bunch of attributes, starting with waiterName that are declared but not initialized.

answered Nov 26, 2011 at 5:19

3 Comments

And while I'm here.. For better help sooner, post an SSCCE. (As opposed to two source files combined at over 400 LOC with references to missing images.)
i apologize for this. it does looked cluttered. unfortunately on this problem i wasn't even sure where to begin with posting code.
The SSCCE document answers that question. (I.E. the shortest sample that can display the problem.)
2

First off you should switch back from an Applet to a regular app. And create the JFrame in the main method instead of doing it in your panel:

Change your main class to:

public class Main{
 public static void main(String[] args){
 JFrame frame = new JFrame("Charlotte's Appletree Restaurant");
 frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
 CalculateBill newContentPane = new CalculateBill();
 frame.getContentPane().add(newContentPane);
 frame.setPreferredSize(new Dimension(300, 600));
 frame.setVisible(true);
 }

The main part of your problem however appears to be that you aren't initializaing textTableNum before you try to add an ActionListener to it.

A NullPointerException happens whenever you try to access a variable that isn't referencing an actual object. To diagnosis them go go the line number and see what variables are being dereferenced on that line.

In this case the stack trace tells you that the exception is happening on line 186 of CalculateBill.java,, which is:

 textTableNum.addActionListener(this);

So based on that line of code the only variable that can be a problem is textTableNum. You need to make sure that variable is initialized before you use it.


Your second problem that you mentioned in the comments is because you started adding components to the CalculateBill panel using GridBagConstraints when you declared CalculateBill to use a BorderLayout.

Also, I noticed you add several components to the same BorderLayout region. You can't do this. You can add only one. If you want multiple components in the NORTH region then you need to create a sub-panel, layout the components you want there, then add the sub-panel to the NORTH of the BorderLayout.

answered Nov 26, 2011 at 5:15

Comments

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.