public class PropertyChangeListenerProxy extends EventListenerProxy<PropertyChangeListener> implements PropertyChangeListener
A class which extends the EventListenerProxy specifically for adding a PropertyChangeListener with a "bound" property. Instances of this class can be added as PropertyChangeListeners to a bean which supports firing property change events.
If the object has a getPropertyChangeListeners method then the array returned could be a mixture of PropertyChangeListener and PropertyChangeListenerProxy objects.
EventListenerProxy, PropertyChangeSupport.getPropertyChangeListeners()
public PropertyChangeListenerProxy(String propertyName,
PropertyChangeListener listener) Constructor which binds the PropertyChangeListener to a specific property.
propertyName - the name of the property to listen onlistener - the listener objectpublic void propertyChange(PropertyChangeEvent event)
Forwards the property change event to the listener delegate.
propertyChange in interface PropertyChangeListener
event - the property change eventpublic String getPropertyName()
Returns the name of the named property associated with the listener.
© 1993–2017, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.