Constructors
| Name | Description |
|---|---|
| EventSetDescriptor(Class, String, Class, String) | This constructor creates an EventSetDescriptor assuming that you are following the most simple standard design pattern where a named event "fred" is (1) delivered as a call on the single method of interface FredListener, (2) has a single argument of type FredEvent, and (3) where the FredListener may be registered with a call on an addFredListener method of the source component and removed with a call on a removeFredListener method. |
| EventSetDescriptor(Class, String, Class, String[], String, String) | This constructor creates an EventSetDescriptor from scratch using string names. |
| EventSetDescriptor(String, Class, Method[], Method, Method) | This constructor creates an EventSetDescriptor from scratch using java.lang.reflect.Method and java.lang.Class objects. |
| EventSetDescriptor(String, Class, MethodDescriptor[], Method, Method) | This constructor creates an EventSetDescriptor from scratch using java.lang.reflect.MethodDescriptor and java.lang.Class objects. |
Methods
| Name | Description |
|---|---|
| getAddListenerMethod() | |
| getListenerMethodDescriptors() | |
| getListenerMethods() | |
| getListenerType() | |
| getRemoveListenerMethod() | |
| isInDefaultEventSet() | Report if an event set is in the "default set". |
| isUnicast() | Normally event sources are multicast. |
| setInDefaultEventSet(boolean) | Mark an event set as being in the "default" set (or not). |
| setUnicast(boolean) | Mark an event set as unicast (or not). |