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

  • Home
  • SEARCH
  • 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 581331
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T14:34:02+00:00 2026-05-13T14:34:02+00:00

I have a class CommonTableModel that has several instance methods and each operate on

  • 0

I have a class CommonTableModel that has several instance methods and each operate on the two instance variables

  • columnNames
  • data

Now, I have six tables, each has diff. column names but should have all the instance methods of the CommonTableModel class. So to pass an instance of the CommonTableModel to a JTable instance, I should first initialize both of the instance variables (columnNames and data).

Q1. Should I make six TableModels, each corresponding to each table and then extends them to the CommonTableModel?

public class FirstTableModel extends CommonTableModel {

    public FirstTableModel() {
        columnNames = {"id", "name"};
        data = {{1, "John"}};
    }
}

In the above example, I tried to initialize inherited data members so that each of the six TableModel can populate columnNames according to the table that they denote.

But I got an error which is restricting me to initialize the inherited members in this way. I think that we can’t initialize instance variables in this way.

Then how can I populate the instace variables of CommonTableModel so that the instance methods of the CommonTableModel process the data that I populate them later.

One of the solution is to pass the data in the constructor of CommonTableModel but in that way, I will have to pass the whole columnNames each time when I make a Table.

I am very confused as I don’t have much experience in programming and don’t know good coding practices.

Please, also refer some good design pattern books so that I can have a better understanding of design patterns.

  • 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-13T14:34:03+00:00Added an answer on May 13, 2026 at 2:34 pm

    But I got an error which is restricting me to initialize the inherited members in this way. I think that we can’t initialize instance variables in this way.

    Arrays which aren’t initialized with new are array constants. You can only initialize them directly after declaration. E.g.

    String[] strings = {"foo", "bar"};
    

    Thus, you should replace the particular lines by (assuming those are already protected fields of CommonTableModel):

    columnNames = new String[] {"id", "name"};
    data = new Object[][] {{1, "John"}};
    

    Edit as per the comments: you can of course also define a constructor for that and make use of the super() call. The advantage is that this improves the degree of encapsulation, i.e. you don’t need to declare the fields protected, but they can now be declared private. Here’s a kickoff example:

    public abstract class CommonTableModel {
        private String[] columnNames;
        private Object[][] data;
    
        protected CommonTableModel(String[] columnNames, Object[][] data) {
            this.columnNames = columnNames;
            this.data = data;
        }
    }
    

    .

    public class FirstTableModel extends CommonTableModel {
        public FirstTableModel() {
            super(new String[] {"id", "name"}, new Object[][] {{1, "John"}});
        }
    }
    

    Note that you still need the new keyword to instantiate them (rsp was wrong here in his answer). You should only NOT make the properties static!! It would affect every instance of the same class. You really don’t want to have that. Also see my comment here below.

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

Sidebar

Ask A Question

Stats

  • Questions 315k
  • Answers 315k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer The exception is trying to tell you that you have… May 13, 2026 at 11:12 pm
  • Editorial Team
    Editorial Team added an answer You need to make your SerializableColor class implement INotifyPropertyChanged. You… May 13, 2026 at 11:12 pm
  • Editorial Team
    Editorial Team added an answer Have a look at: The Nachos for Java README -… May 13, 2026 at 11:12 pm

Related Questions

I have a class property exposing an internal IList<> through System.Collections.ObjectModel.ReadOnlyCollection<> How can I
I have a class with a bunch of properties that look like this: public
I have a class that I want to use to store properties for another
I have a class with many embedded assets. Within the class, I would like
I have a class that map objects to objects, but unlike dictionary it maps

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.