Java Progrmaing is Crazy!
Just take a look at one class of a program I am writing for my Final Project in Java Programing! Ahhhhhhhhhhhhhhhhh!public class UpdatePanel extends JPanel implements ActionListener
{
private JTextField accountId;
private JButton deposit;
private JButton withdraw;
private JButton payCheck;
private JButton makePayment;
private JButton charge;
private JButton exit;
public UpdatePanel()
{
/*Container container = getContentPane();
container.setLayout(new BoxLayout(container, BoxLayout.Y_AXIS));*/
JPanel accountID = new JPanel();
JPanel accountType = new JPanel();
JPanel annualRate = new JPanel();
JPanel balance = new JPanel();
this.add(accountID);
this.add(accountType);
this.add(annualRate);
this.add(balance);







