FileDocCategorySizeDatePackage
EventListenerProxy.javaAPI DocAndroid 1.5 API1598Wed May 06 22:41:04 BST 2009java.util

EventListenerProxy

public abstract class EventListenerProxy extends Object implements EventListener
This abstract class provides a simple wrapper for objects of type {@code EventListener}.
since
Android 1.0

Fields Summary
private final EventListener
listener
Constructors Summary
public EventListenerProxy(EventListener listener)
Creates a new {@code EventListener} proxy instance.

param
listener the listener wrapped by this proxy.
since
Android 1.0

        super();
        this.listener = listener;
    
Methods Summary
public java.util.EventListenergetListener()
Returns the wrapped {@code EventListener}.

return
the wrapped {@code EventListener}.
since
Android 1.0

        return listener;