Not that I know of.
Here's a hack:
public static <E> List<ListEventListener<E>>
getListEventListeners(EventList<E> from) throws
IllegalArgumentException {
Field updatesField;
try {
updatesField = AbstractEventList.class.getDeclaredField("updates");
}
catch (NoSuchFieldException e) {
throw new IllegalArgumentException("The EventList [" +
from + "] does not contain an \"updates\" field.");
}
updatesField.setAccessible(true);
ListEventAssembler<E> updates;
try {
updates = (ListEventAssembler<E>) updatesField.get(from);
}
catch (IllegalAccessException e) {
throw new AssertionError(e);
}
return updates.getListEventListeners();
}
On Fri, Apr 24, 2009 at 11:38, Marcin Szkudlarek
<
marcin.szkudlarek@...> wrote:
---------------------------------------------------------------------
To unsubscribe, e-mail:
users-unsubscribe@...
For additional commands, e-mail:
users-help@...