Hi All,
I thought that I'd post a question directly, has anyone encountered an issue with the event model between version 1.5.0_jdk15 and 1.6.1_jdk15 of GlazedLists.
My program behaves differently, I've just tried in the latest version, it misses an event.
I am using Spring rich client and Master/Details table. The component holds an ObservableEventList which extends TransformedList from GlazedLists.
My code then grabs this list and add a listener like this:
If I run under glazedlists 1.5.0 my listener is called.Code:constituentList.addListDataListener(new ListDataListener() { public void contentsChanged(ListDataEvent e) { getLog().info("******************** contentsChanged " + e); recalc(); } public void intervalAdded(ListDataEvent e) { getLog().info("******************** intervalAdded " + e); recalc(); } public void intervalRemoved(ListDataEvent e) { getLog().info("******************* intervalRemoved " + e); recalc(); } private void recalc() { .... } });
Under 1.6.1 it does not! no other changes (runtime swap of the libraries).
I suspect that something has changed and that the extended class from Spring RC may not work anymore?
Any suggestion?
Many thanks!
Benoit


Reply With Quote
