242243244245246247248249
/** * Fire a ListDataEvent.CONTENTS_CHANGED event to all the registered listeners */ public void fireListDataChanged() { ListDataEvent e = new ListDataEvent(this, ListDataEvent.CONTENTS_CHANGED, 0, getSize() - 1); fireListDataEvent(e); }