Is there a way to get a list of listeners for an event? I'm using weld with glassfish 3.1.1. For example to find out which classes are observing TestEvent:
@Stateless
public class TestListener {
public void listenToHello(@Observes TestEvent testEvent) {
}
}
Thanks.