How often my JTable call getValueAt() from AbstractTableModel?

Is it will be normal, if I will make big calculations in getValueAt() (for example, calculate value of polynomial)? Should I store values of polynomial in array and return from it?

link|improve this question

67% accept rate
depends of your code, for real help please post code in the sscce.org form – mKorbel Dec 5 '11 at 17:53
2  
The getValueAt() method should be very efficient because the method can be called frequently. Every time you scroll, every time you change row selection etc... – camickr Dec 5 '11 at 17:54
feedback

1 Answer

up vote 4 down vote accepted

It is called often; in fact you can see how often by putting in a print statement and watch it fill up your console window. I recommend caching your polynomials if they're expensive to compute, though this is true for all computations everywhere, not just for polynomials in a JTable.

link|improve this answer
Thank you. I put counter at the getValueAt() and all become clear. getValueAt() calls by table every time, when I resize window, when I click on cell. @camickr said it in comment. – Dmitry Dec 5 '11 at 18:02
feedback

Your Answer

 
or
required, but never shown

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