Searched defs:listenerMethodName (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/java/beans/
H A DEventHandler.java282 private final String listenerMethodName; field in class:EventHandler
291 * the <code>eventPropertyName</code> and <code>listenerMethodName</code>
298 * @param listenerMethodName the name of the method in the listener interface that should trigger the action
310 @ConstructorProperties({"target", "action", "eventPropertyName", "listenerMethodName"})
311 public EventHandler(Object target, String action, String eventPropertyName, String listenerMethodName) { argument
321 this.listenerMethodName = listenerMethodName;
369 return listenerMethodName;
447 if (listenerMethodName == null || listenerMethodName
677 create(Class<T> listenerInterface, Object target, String action, String eventPropertyName, String listenerMethodName) argument
[all...]
H A DEventSetDescriptor.java67 * @param listenerMethodName The method that will get called when the event gets
73 Class<?> listenerType, String listenerMethodName)
76 new String[] { listenerMethodName },
87 throw new IntrospectionException("Method \"" + listenerMethodName +
72 EventSetDescriptor(Class<?> sourceClass, String eventSetName, Class<?> listenerType, String listenerMethodName) argument

Completed in 43 milliseconds