org.jaffa.util
Class EventHandler
java.lang.Object
org.jaffa.util.EventHandler
- public class EventHandler
- extends Object
This class determines how an event posted by a browser is to be handled.
|
Nested Class Summary |
static class |
EventHandler.Method
This class respresents an EventHandler method. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
EventHandler
public EventHandler()
getEventMethods
public static EventHandler.Method[] getEventMethods(String eventId)
- This method will generate an array of EventHandler.Method objects.
Each object will have a Name, the signature & the parameters
For eg: if eventId="grid1=4;partLookup;clicked"
The following methods will be generated:
do_grid1_4_partLookup_clicked
do_grid1_partLookup_clicked(String v1), v1="4"
do_grid1_clicked(String v1, String v2), v1="4" & v2="partLookup"
- Parameters:
eventId - The event.
- Returns:
- an array of EventHandler.Method objects.
Copyright © 2002-2004 JAFFA Project.