Class ClientListener

java.lang.Object
ClientFunction
org.eclipse.rap.rwt.scripting.ClientListener
All Implemented Interfaces:
Listener

public class ClientListener extends ClientFunction implements Listener
A special SWT event listener that is implemented in JavaScript and will be executed on a RAP client. The handleEvent() method of this type will never be called.
Since:
2.2
  • Constructor Details

    • ClientListener

      public ClientListener(String scriptCode)
      Creates a ClientListener instance with the specified JavaScript code. The JavaScript code must contain a method named handleEvent. This method will be called with a single argument, event.
      Parameters:
      scriptCode - the JavaScript code of the event handler
  • Method Details

    • handleEvent

      public void handleEvent(Event event)
      This method will NOT be called on a ClientListener.
      Specified by:
      handleEvent in interface Listener
      Parameters:
      event - the event which occurred