Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6618433
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T20:49:57+00:00 2026-05-25T20:49:57+00:00

I have a list of objects of type SI (SingleInstruction) in Java. Here is

  • 0

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.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T20:49:58+00:00Added an answer on May 25, 2026 at 8:49 pm

    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.

     public class FinalTableModel extends AbstractTableModel {
    
        private List<SI> li = new ArrayList();
        private String[] columnNames = { "Recipe", "Order", "Instruction",
                    "Est.time", "Timer", "Timer Label", "Has Subinstructions"};
    
        public FinalTableModel(List<SI> list){
             this.li = list;
        }
    
        @Override
        public String getColumnName(int columnIndex){
             return columnNames[columnIndex];
        }
    
        @Override     
        public int getRowCount() {
            return li.size();
        }
    
        @Override        
        public int getColumnCount() {
            return 7; 
        }
    
        @Override
        public Object getValueAt(int rowIndex, int columnIndex) {
            SI si = list.get(rowIndex);
            switch (columnIndex) {
                case 0: 
                    return si.getRecipe();
                case 1:
                    return si.getMakingOrder();
                case 2:
                    return si.getInstruction();
                case 3:
                    return si.getEstimatedTimeInMinutesSeconds();
                case 4:
                    return si.getTimerInMinutesSeconds();
                case 5:
                    return si.getTimerEndingText();
                case 6:
                    return si.isContainsOtherInstructions(); 
               }
               return null;
       }
    
       @Override
       public Class<?> getColumnClass(int columnIndex){
              switch (columnIndex){
                 case 0:
                   return String.class;
                 case 1:
                   return Integer.class;
                 case 2:
                   return String.class;
                 case 3:
                   return Double.class;
                 case 4:
                   return Double.class;
                 case 5:
                   return String.class;
                 case 6:
                   return Boolean.class;
                 }
                 return null;
          }
     }
    

    Then make your JFrame and and create your JTable like this:

        jScrollPane1 = new javax.swing.JScrollPane();
        jTable1 = new javax.swing.JTable();
    
        jTable1.setModel(new FinalTableModel(finalList));
        jScrollPane1.setViewportView(jTable1);
    

    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.

    enter image description here

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have list of objects type Node ( items ). And Node class has
I have a class called Foo that defines a list of objects of type
I have IQueryable list of objects of type T which I want to transform
I have a list of objects, can be of any type T . How
Today I discovered something that makes me sad: objects of type System.Generic.Collections.List don't have
I have a list of objects of type C, where type C consists of
I have a List of objects of type IGroup. These can be nested to
I have a list with objects of x type. Those objects have an attribute
I have a list of objects (of type 'TrackedSet') that is data bound to
Let's assume I have a list with objects of type Value . Value has

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.