I have a JTable which is bound to my EventTracker bean, essentially a wrapper around a list which I will use as append/clear only (i.e., a simple log). Problem is, when I add en
you need to tell the table that the datamodel changed:
.fireTableDataChanged()
is the correct method; assuming that your table descends from the Abstract Table Model.
(so yes, I agree with trashgod)