public interface Vetoable extends Observable
Modifier and Type | Method and Description |
---|---|
void |
addVetoableChangeListener(String propertyName,
VetoableChangeListener listener)
Add a VetoableChangeListener for a specific property.
|
void |
addVetoableChangeListener(VetoableChangeListener listener)
Add a VetoableListener to the listener list.
|
VetoableChangeListener[] |
getVetoableChangeListeners()
Returns the list of VetoableChangeListeners.
|
VetoableChangeListener[] |
getVetoableChangeListeners(String propertyName)
Returns an array of all the listeners which have been associated
with the named property.
|
void |
removeVetoableChangeListener(String propertyName,
VetoableChangeListener listener)
Remove a VetoableChangeListener for a specific property.
|
void |
removeVetoableChangeListener(VetoableChangeListener listener)
Remove a VetoableChangeListener from the listener list.
|
addPropertyChangeListener, addPropertyChangeListener, getPropertyChangeListeners, getPropertyChangeListeners, removePropertyChangeListener, removePropertyChangeListener
void addVetoableChangeListener(@Nullable VetoableChangeListener listener)
listener
is null, no exception is thrown and no action
is taken.listener
- The VetoableChangeListener to be addedvoid addVetoableChangeListener(@Nullable String propertyName, @Nullable VetoableChangeListener listener)
propertyName
or listener
is null, no
exception is thrown and no action is taken.propertyName
- The name of the property to listen on.listener
- The VetoableChangeListener to be addedvoid removeVetoableChangeListener(@Nullable VetoableChangeListener listener)
listener
was added more than once to the same event
source, it will be notified one less time after being removed.
If listener
is null, or was never added, no exception is
thrown and no action is taken.listener
- The VetoableChangeListener to be removedvoid removeVetoableChangeListener(@Nullable String propertyName, @Nullable VetoableChangeListener listener)
listener
was added more than once to the same event
source for the specified property, it will be notified one less time
after being removed.
If propertyName
is null, no exception is thrown and no
action is taken.
If listener
is null, or was never added for the specified
property, no exception is thrown and no action is taken.propertyName
- The name of the property that was listened on.listener
- The VetoableChangeListener to be removed@Nonnull VetoableChangeListener[] getVetoableChangeListeners()
@Nonnull VetoableChangeListener[] getVetoableChangeListeners(@Nullable String propertyName)
propertyName
- The name of the property being listened toVetoableChangeListeners
associated with
the named property. If no such listeners have been added,
or if propertyName
is null, an empty array is
returned.