Stay organized with collections
Save and categorize content based on your preferences.
EventListenerProxy
abstract class EventListenerProxy<T : EventListener!> : EventListener
Known Direct Subclasses
PropertyChangeListenerProxy |
A class which extends the EventListenerProxy specifically for adding a PropertyChangeListener with a "bound" property.
|
|
An abstract wrapper class for an EventListener
class which associates a set of additional parameters with the listener. Subclasses must provide the storage and accessor methods for the additional arguments or parameters.
For example, a bean which supports named properties would have a two argument method signature for adding a PropertyChangeListener
for a property:
public void addPropertyChangeListener(String propertyName,
PropertyChangeListener listener)
If the bean also implemented the zero argument get listener method:
public PropertyChangeListener[] getPropertyChangeListeners()
then the array may contain inner
PropertyChangeListeners
which are also
PropertyChangeListenerProxy
objects.
If the calling method is interested in retrieving the named property then it would have to test the element to see if it is a proxy class.
Summary
Public constructors |
Creates a proxy for the specified listener.
|
Public methods |
open T |
Returns the listener associated with the proxy.
|
Public constructors
EventListenerProxy
EventListenerProxy(listener: T)
Creates a proxy for the specified listener.
Parameters |
listener |
T: the listener object |
Public methods
getListener
open fun getListener(): T
Returns the listener associated with the proxy.
Return |
T |
the listener associated with the proxy |
Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
Last updated 2025-02-10 UTC.
[null,null,["Last updated 2025-02-10 UTC."],[],[],null,["# EventListenerProxy\n\nAdded in [API level 1](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels)\n\nEventListenerProxy\n==================\n\n```\nabstract class EventListenerProxy\u003cT : EventListener!\u003e : EventListener\n```\n\n|---|-----------------------------------|\n| [kotlin.Any](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html) ||\n| ↳ | [java.util.EventListenerProxy](#) |\n\n|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| Known Direct Subclasses [PropertyChangeListenerProxy](../beans/PropertyChangeListenerProxy.html#) |---------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------| | [PropertyChangeListenerProxy](../beans/PropertyChangeListenerProxy.html#) | A class which extends the `EventListenerProxy` specifically for adding a `PropertyChangeListener` with a \"bound\" property. | |\n\nAn abstract wrapper class for an `EventListener` class which associates a set of additional parameters with the listener. Subclasses must provide the storage and accessor methods for the additional arguments or parameters.\n\nFor example, a bean which supports named properties would have a two argument method signature for adding a `PropertyChangeListener` for a property: \n\n```kotlin\npublic void addPropertyChangeListener(String propertyName,\n PropertyChangeListener listener)\n \n```\nIf the bean also implemented the zero argument get listener method: \n\n```kotlin\npublic PropertyChangeListener[] getPropertyChangeListeners()\n \n```\nthen the array may contain inner `PropertyChangeListeners` which are also `PropertyChangeListenerProxy` objects.\n\nIf the calling method is interested in retrieving the named property then it would have to test the element to see if it is a proxy class.\n\nSummary\n-------\n\n| Public constructors ||\n|------------------------------------------------------------------------------------------------------------------------------------------|---|\n| [EventListenerProxy](#EventListenerProxy(java.util.EventListenerProxy.T))`(`listener:` `T`)` Creates a proxy for the specified listener. |\n\n| Public methods ||\n|--------|-----------------------------------------------------------------------------------|\n| open T | [getListener](#getListener())`()` Returns the listener associated with the proxy. |\n\nPublic constructors\n-------------------\n\n### EventListenerProxy\n\nAdded in [API level 1](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels) \n\n```\nEventListenerProxy(listener: T)\n```\n\nCreates a proxy for the specified listener.\n\n| Parameters ||\n|------------|------------------------|\n| `listener` | T: the listener object |\n\nPublic methods\n--------------\n\n### getListener\n\nAdded in [API level 1](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels) \n\n```\nopen fun getListener(): T\n```\n\nReturns the listener associated with the proxy.\n\n| Return ||\n|---|----------------------------------------|\n| T | the listener associated with the proxy |"]]