The init Method
incButton = new Button("+"); // Create Controls
decButton = new Button("-");
valField = new TextField();
Panel p = new Panel(); // Lay them out
p.setLayout(new BorderLayout());
p.add(incButton, "North");
p.add(decButton, "South");
incButton.addActionListener(this);
decButton.addActionListener(this);