for the first part.
private JTextField getEntry() {
entry = new JTextField();
}
This wouldn't work, in my case, because JTextField isn't returning "JTextField"
Because the way my code is written where all the JTextField, JButton .. etc.. are added like this "JContentpane.add(getButton);".
What do you think?