Java: Help constructing a fillTextFields() method

Posted by Holly on Stack Overflow See other posts from Stack Overflow or by Holly
Published on 2010-05-16T19:11:47Z Indexed on 2010/05/16 19:20 UTC
Read the original article Hit count: 233

Filed under:
|
|
|

I have a Java project where I am to connect to a database and create buttons (next, new, save, delete, previous) to navigate through the database content where there are appropriate text fields and labels for the specific information.

I'll use the code below as an example (each button is set up very similar)... I have it as follows:

JButton jbtnNext = new JButton("Next ->");
jbtnNext.addActionListener(this);
if (e.getSource() == jbtnNext) jbtnNext_Click();
private void jbtnNext_Click() {
    JOptionPane.showMessageDialog(null, "Next" ,"Button Pressed", 
        JOptionPane.INFORMATION_MESSAGE);

    try {
        if (rset.next()) {
            fillTextFields(true);
        }else{
            //Display result in a dialog box
            JOptionPane.showMessageDialog(null, "Not found");
    }
}
    catch (SQLException ex) {
        ex.printStackTrace();
    }

}

The professor gave the following outline of logic to construct the fillTextFields() method:

  1. Construct the method to provide reusable code that would fill the JTextFields on the GUI with appropriate values from current record from the database (when "Previous or "Next" buttons are pressed) or blank values (when the new Button is pressed).

  2. To determine when the current record was to provide values (next and previous) or the value would be blank (new button) pass a boolean argument into the method. If data from the current record was to be used as fill values, pass true for both previous and next button code after moving the record pointer. If the new button was pressed and want to fill with blank values, pass false to the method.

  3. Inside the method, use a conditional expression to evaluate the boolean variable. If true, The appropriate get----() resultset method is used to fill the JTextFields. If false, fill them with "".

  4. The .setText() method of the JTextField is used to fill each JTextField.

  5. Make sure the fillTextFields method throws the appropriate exception.

I understand and have the previous and next button methods passing true, while the new button method is passing false, but I don't quite understand how to set up the fillTextFields() method correctly or how to "throw the appropriate exception"... Any help would really be appreciated, thank you!

© Stack Overflow or respective owner

Related posts about java

Related posts about methods