| Package | Description |
|---|---|
| java.beans |
| Modifier and Type | Class and Description |
|---|---|
class |
VetoableChangeListenerProxy
A class which extends the
EventListenerProxy
specifically for adding a VetoableChangeListener
with a "constrained" property. |
| Modifier and Type | Method and Description |
|---|---|
VetoableChangeListener[] |
VetoableChangeSupport.getVetoableChangeListeners()
Returns an array of all the listeners that were added to the
VetoableChangeSupport object with addVetoableChangeListener().
|
VetoableChangeListener[] |
VetoableChangeSupport.getVetoableChangeListeners(String propertyName)
Returns an array of all the listeners which have been associated
with the named property.
|
| Modifier and Type | Method and Description |
|---|---|
void |
VetoableChangeSupport.addVetoableChangeListener(String propertyName,
VetoableChangeListener listener)
Add a VetoableChangeListener for a specific property.
|
void |
VetoableChangeSupport.addVetoableChangeListener(VetoableChangeListener listener)
Add a VetoableChangeListener to the listener list.
|
void |
VetoableChangeSupport.removeVetoableChangeListener(String propertyName,
VetoableChangeListener listener)
Remove a VetoableChangeListener for a specific property.
|
void |
VetoableChangeSupport.removeVetoableChangeListener(VetoableChangeListener listener)
Remove a VetoableChangeListener from the listener list.
|
| Constructor and Description |
|---|
VetoableChangeListenerProxy(String propertyName,
VetoableChangeListener listener)
Constructor which binds the
VetoableChangeListener
to a specific property. |
Copyright © 2017 API Design. All Rights Reserved.