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 8442025
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T08:44:00+00:00 2026-06-10T08:44:00+00:00

I have 5 JTables on different forms with arbitrary numbers of rows and I

  • 0

I have 5 JTables on different forms with arbitrary numbers of rows and I would like to have a label for each one that will show me the total number of rows in that table and also change color for 3 seconds when the row count changes. The color should go green if incrementing and red if decrementing. What would be the best way to implement this such that I do not need to duplicate too much code in each of my forms?

  • 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-06-10T08:44:01+00:00Added an answer on June 10, 2026 at 8:44 am

    basically, you add a TableModelListener to the JTable’s model and on receiving change events, update the corresponding labels as appropriate

    some code:

    public class TableModelRowStorage 
        // extends AbstractBean // this is a bean convenience lass  of several binding frameworks
                                // but simple to implement directly  
         implements TableModelListener {
    
        private int rowCount;
    
        public TableModelRowStorage(TableModel model) {
            model.addTableModelListener(this);
            this.rowCount = model.getRowCount();
        }
        @Override
        public void tableChanged(TableModelEvent e) {
            if (((TableModel) e.getSource()).getRowCount() != rowCount) {
                int old = rowCount;
                rowCount = ((TableModel) e.getSource()).getRowCount();
                doStuff(old, rowCount);
            }
    
        }
    
        protected void doStuff(int oldRowCount, int newRowCount) {
            // here goes what you want to do - all in pseudo-code
            // either directly configuring a label/start timer
            label.setText("RowCount: " + newRowCount);
            label.setForeground(newRowCount - oldRowCount > 0 ? Color.GREEN : Color.RED);
            timer.start();
    
            // or indirectly by firing a propertyChange
            firePropertyChange("rowCount", oldRowCount, newRowCount);
        }
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a JPopUpMenu that I added to multiple JTables and I would like
I have an interface that has multiple small JTables stacked on top of each
I would like to have the editor in my editable JTables select all text
I have a table with four columns, and I would like each column head
I have two JTables. One is for the list of invoices and the other
I have a main JFrame that is interactive, i.e. user sets different options. After
I have two screens that are using the same resolution (1280x1024), but one of
I have some data I have to show through two JTables; the data is
I have a JTable which contains a one column, cell render of each table
I have a JTable that will have the last column data field change to

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.