can someone help me out...
import java.applet.*; import javax.swing.*; import java.awt.*; import java.awt.event.*; public class WhiteBoard extends JApplet implements ActionListener { private static int WIDTH = 550; private static int HEIGHT = 350; private int row = 10; private int col = 20; //GUI components private JLabel headingL; private JTextField lineTF; private JTextArea whiteBoardTA; private JButton exitB, appendB; public WhiteBoard() { setSize(WIDTH,HEIGHT); headingL = new JLabel("Welcome to White Board"); lineTF = new JTextField(20); whiteBoardTA = new JTextArea(row,col); exitB = new JButton("Exit"); exitB.addActionListener(this); appendB = new JButton("Append"); appendB.addActionListener(this); setLayout(null); headingL.setLocation(50, 20); lineTF.setLocation(20, 100); whiteBoardTA.setLocation(320, 50); appendB.setLocation(230, 100); exitB.setLocation(230, 250); headingL.setSize(200, 30); lineTF.setSize(200, 30); whiteBoardTA.setSize(200, 200); appendB.setSize(80, 30); exitB.setSize(80, 30); add(headingL); add(lineTF); add(whiteBoardTA); add(appendB); add(exitB); setVisible(true); } public void actionPerformed(ActionEvent e) { if(e.getActionCommand().equals("Append")) whiteBoardTA.append(lineTF.getText()); else if(e.getActionCommand().equals("Exit")){ //THIS IS WHERE I'M HAVING THE PROBLEMS// System.exit(0); } } }