java.beans
public class VetoableChangeListenerProxy extends EventListenerProxy implements VetoableChangeListener
EventListenerProxy
specifically
for associating a VetoableChangeListener
with a "constrained"
property. Instances of this class can be added as a
VetoableChangeListener
to a bean which supports firing
VetoableChange events.
If the object has a getVetoableChangeListeners()
method then the array returned could be a mixture of
VetoableChangeListener
and
VetoableChangeListenerProxy
objects.
EventListenerProxy
,
VetoableChangeListener
,
VetoableChangeSupport.getVetoableChangeListeners()
Constructor and Description |
---|
VetoableChangeListenerProxy(String propertyName,
VetoableChangeListener listener) |
Modifier and Type | Method and Description |
---|---|
String |
getPropertyName()
Returns the name of the named property associated with the
listener.
|
void |
vetoableChange(PropertyChangeEvent evt)
Forwards the property change event to the listener delegate.
|
getListener
public VetoableChangeListenerProxy(String propertyName, VetoableChangeListener listener)
propertyName
- The name of the property to listen on.listener
- The listener objectpublic void vetoableChange(PropertyChangeEvent evt) throws PropertyVetoException
vetoableChange
in interface VetoableChangeListener
evt
- the property change eventPropertyVetoException
- if the recipient wishes the property
change to be rolled back.public String getPropertyName()
Submit a bug or feature Copyright © 1993, 2017, Oracle and/or its affiliates. All rights reserved.
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.