Hi folks,
I'm writing some utility classes for a project, and I've written an abstract class called "XPObjectTable" that displays a table of objects of a given type. To refresh this, I'm using "AbstractTableModel.fireTableDataChanged()". Now I'm writing a similar class for JList, but can't find a similar method (i.e. "AbstractListModel.fireListDataChanged()"). Please could somebody either post a snippet of code that will do the equivilent, or please provide a hint as to how such a method could be created.
Thanks, Lee.
P.S. In order to make this class as easy-to-use as possible, I need a method that takes no parameters; it should simply refresh the entire list.