Client and backend. This class is shared: the same code is compiled into your app and into your server, so everything on this page works in both.

public abstract class EventListenerProxy

  1. Object
  2. EventListenerProxy

ImplementsEventListener

This abstract class provides a simple wrapper for objects of type EventListener.

Constructors

public EventListenerProxy(EventListener listener)Creates a new EventListener proxy instance.

Methods

public EventListener getListener()Returns the wrapped EventListener.

Inherited methods

Constructor details

EventListenerProxy

public EventListenerProxy(EventListener listener)
Creates a new EventListener proxy instance.

Parameters

listener EventListener
the listener wrapped by this proxy.

Method details

getListener

public EventListener getListener()
Returns the wrapped EventListener.

Returns

the wrapped EventListener.