| Package | Description |
|---|---|
| java.beans |
| Modifier and Type | Method and Description |
|---|---|
void |
VetoableChangeSupport.fireVetoableChange(PropertyChangeEvent event)
Fires a property change event to listeners
that have been registered to track updates of
all properties or a property with the specified name.
|
void |
VetoableChangeSupport.fireVetoableChange(String propertyName,
boolean oldValue,
boolean newValue)
Reports a boolean constrained property update to listeners
that have been registered to track updates of
all properties or a property with the specified name.
|
void |
VetoableChangeSupport.fireVetoableChange(String propertyName,
int oldValue,
int newValue)
Reports an integer constrained property update to listeners
that have been registered to track updates of
all properties or a property with the specified name.
|
void |
VetoableChangeSupport.fireVetoableChange(String propertyName,
Object oldValue,
Object newValue)
Reports a constrained property update to listeners
that have been registered to track updates of
all properties or a property with the specified name.
|
void |
VetoableChangeListenerProxy.vetoableChange(PropertyChangeEvent event)
Forwards the property change event to the listener delegate.
|
void |
VetoableChangeListener.vetoableChange(PropertyChangeEvent evt)
This method gets called when a constrained property is changed.
|
Copyright © 2013 API Design. All Rights Reserved.