Class EventListenerProxy

java.lang.Object
java.util.EventListenerProxy
All Implemented Interfaces:
EventListener

public abstract class EventListenerProxy extends java.lang.Object implements EventListener
This abstract class provides a simple wrapper for objects of type EventListener.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Creates a new EventListener proxy instance.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the wrapped EventListener.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • EventListenerProxy

      public EventListenerProxy(EventListener listener)

      Creates a new EventListener proxy instance.

      Parameters
      • listener: the listener wrapped by this proxy.
  • Method Details

    • getListener

      public EventListener getListener()

      Returns the wrapped EventListener.

      Returns

      the wrapped EventListener.