Example usage for Java java.beans PropertyChangeEvent fields, constructors, methods, implement or subclass
The text is from its open source code.
PropertyChangeEvent(Object source, String propertyName, Object oldValue, Object newValue) Constructs a new PropertyChangeEvent . |
Object | getNewValue() Gets the new value for the property, expressed as an Object. |
Object | getOldValue() Gets the old value for the property, expressed as an Object. |
String | getPropertyName() Gets the programmatic name of the property that was changed. |
Object | getSource() The object on which the Event initially occurred. |
void | setPropagationId(Object propagationId) Sets the propagationId object for the event. |