I have a function which triggers with:

public void tableChanged(TableModelEvent e){...}

I got the TableModel from the TableModelEvent with:

TableModel model = (TableModel)e.getSource();

But I need the JTable to use it in a TablecellBalloonTip cosntructor. How can i get the JTable from the TableModel?

link|improve this question

could you be little bit concrete, are you want to dispplay tooltip on the TableCell ? or somethind else ? – mKorbel Jul 5 '11 at 8:55
you cant and you dont want to - read some basic article about Swing architecture to understand why not. And no: I'm not kidding - your swinging life will be miserable if you dont understand how the parts are supposed to be used ;-) – kleopatra Jul 5 '11 at 9:07
feedback

2 Answers

up vote 4 down vote accepted

You cannot get it directly from the event. You installed the listener to the model, not the table itself. The model does not have a reference to the table. Actually, the same model could possibly be reused by several tables. So you have to store the reference to the table somewhere else. If you have only one table, then this should work:

final JTable table = new JTable(); 
table.getModel().addTableModelListener(new TableModelListener() {
  @Override   
  public void tableChanged(TableModelEvent e) {   
    table.doSomething();
  }
 });

Otherwise, if you have more than one table, you can simply create a separate listener for each of them like above.

link|improve this answer
Thanks for the aclaration – Roman Rdgz Jul 5 '11 at 9:33
feedback

You need to keep the JTable instance somewhere, for later use. May be as a panel instance variable.

In MVC, the Model is not tied to a particular view or controller, hence you can not get it from the Model -- it is something very much expected.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.