VetoableChangeListener, EventListener
public class VetoableChangeListenerProxy extends EventListenerProxy<VetoableChangeListener> implements VetoableChangeListener
EventListenerProxy specifically for adding a VetoableChangeListener with a "constrained" property. Instances of this class can be added as VetoableChangeListeners to a bean which supports firing vetoable change events.  If the object has a getVetoableChangeListeners method then the array returned could be a mixture of VetoableChangeListener and VetoableChangeListenerProxy objects.
| Constructor | Description | 
|---|---|
| VetoableChangeListenerProxy | Constructor which binds the  VetoableChangeListenerto a specific property. | 
| Modifier and Type | Method | Description | 
|---|---|---|
| String | getPropertyName() | Returns the name of the named property associated with the listener. | 
| void | vetoableChange | Forwards the property change event to the listener delegate. | 
getListener
public VetoableChangeListenerProxy(String propertyName, VetoableChangeListener listener)
VetoableChangeListener to a specific property.propertyName - the name of the property to listen onlistener - the listener objectpublic void vetoableChange(PropertyChangeEvent event) throws PropertyVetoException
vetoableChange in interface VetoableChangeListener
event - the property change eventPropertyVetoException - if the recipient wishes the property change to be rolled backpublic String getPropertyName()
    © 1993, 2023, 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.
    https://docs.oracle.com/en/java/javase/21/docs/api/java.desktop/java/beans/VetoableChangeListenerProxy.html