I am creating a Java Swing application which displays a window with a table where the user can insert or delete selected elements stored in an array. For this table I have created a table model class extending the DefaultTableModel class. The problem arises when all the elements have been deleted from the table, as a null pointer exception is thrown. Does anyone know a quick solution to this problem?

Thanks in advance!

link|improve this question

61% accept rate
1  
seeing the code around where the null pointer is thrown (and an indication which line triggers the exception) would help in identifying the solution. – akf May 26 '10 at 15:40
1  
The DefaultTableModel works fine with 0 rows. So the problem is with your custom code. Post your SSCCE (sscce.org) that demonstrates the problem. – camickr May 26 '10 at 20:29
feedback

1 Answer

I usually handle such model-view conversion anomalies by Using Custom Renderers. For example:

setText((value == null) ? "" : formatter.format(value));
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.