I have a list of objects of type SI (SingleInstruction) in Java.
Here is the SI class with its constructor.
public class SI {
private String recipe;
private Integer makingOrder;
private String instruction;
private double estimatedTimeInMinutesSeconds;
private Double timerInMinutesSeconds;
private String timerEndingText;
private boolean containsOtherInstructions = false;
private List<SI> embeddedInstructionsList;
public SI (String s1, Integer i1, String s2, double d1, Double d2, String s3){
recipe = s1;
makingOrder = i1;
instruction = s2;
estimatedTimeInMinutesSeconds = d1;
timerInMinutesSeconds = d2;
timerEndingText = s3;
}
setters and getters methods ommited....
I need to have a table in my GUI that displays the data of this list.
When I begin the program I create a
public List<SI> finalList = new ArrayList();
which is empty so I need an empty table to be displayed.
The table should have columns of
(String Recipe, Integer Order, String Instruction, double Est.time,
Double Timer, String TimerText, boolean containOtherInstructions)
Afterwards the finalList is filled with data and I need these data to be displayed in the table.
In order to give you an example, I created a button that creates some SI and adds them to the finalList.
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
SI si1 = new SI("Greek Salad", 1, "cut veggies", 4, null, null);
SI si2 = new SI("Greek Salad", 2, "put spices", 1, null, null);
SI si3 = new SI("Greek Salad", 3, "feta and finish", 1, null, null);
SI si4 = new SI("Break", null, "Your free 10 minutes", 10, null, null);
SI si5 = new SI("Meat", 1, "preheat oven", 0.5, 10.0, "oven is ready");
SI si6 = new SI("Meat", 2, "spices on meat", 2, null, null);
SI si7 = new SI("Meat", 3, "cook meat", 1, 10.0, "meat is ready");
SI si8 = new SI("Meat", 4, "serve", 1, null, null);
SI si9 = new SI("Break", null, "Your free 10 minutes", 10, null, null);
SI si10 = new SI("Jelly", 1, "Boil water", 0.5, 4.0, "water is ready");
SI si11 = new SI("Jelly", 2, "add mix and stir", 4, null, null);
SI si12 = new SI("Jelly", 3, "share in bowls, wait 3 hours", 2, null, null);
finalList.add(si1);
finalList.add(si2);
finalList.add(si3);
finalList.add(si4);
finalList.add(si5);
finalList.add(si6);
finalList.add(si7);
finalList.add(si8);
finalList.add(si9);
finalList.add(si10);
finalList.add(si11);
finalList.add(si12);
}
Now I need that when I press the button, the table is updated and displays the data.
I’ve tried a lot to find out how to do it but it is too hard. I’m not sure if I should extend AbstractTableModel or just use the defaultTableModel.
To help you give me suggestions, the data of this table is final and user can’t modify any cell. what should be allowed to the user to do though is to move rows up or down to change the order in the finalList.
PS: I am using netbeans, if you have any quick suggestions on the GUI builder.
In Model-View-Controller Architecture the model is always responsible for the provision of data. If you use a model for your JTable the model provides the data.
In order to create a model make a separate class that extends AbstractTableModel and has a constructor that creates all the SI objects you need and stores them to an ArrayList.
Then make your JFrame and and create your JTable like this:
The idea is that JTable will autamatically request the data from the model, through call to getValueAt(row, col).
Netbeans makes it very easy to assign the model to your JTable. The model is a property of the JTable. Click the ‘…’ button and choose “Custom code”. Underneath create a model instance.