Example usage for Java java.beans EventSetDescriptor fields, constructors, methods, implement or subclass
The text is from its open source code.
EventSetDescriptor(Class> sourceClass, String eventSetName, Class> listenerType, String[] listenerMethodNames, String addListenerMethodName, String removeListenerMethodName) Creates an EventSetDescriptor from scratch using string names. | |
EventSetDescriptor(String eventSetName, Class> listenerType, Method[] listenerMethods, Method addListenerMethod, Method removeListenerMethod, Method getListenerMethod) This constructor creates an EventSetDescriptor from scratch using java.lang.reflect.Method and java.lang.Class objects. |
Method | getAddListenerMethod() Gets the method used to add event listeners. |
Class> | getListenerType() Gets the Class object for the target interface. |
String | getName() Gets the programmatic name of this feature. |