Package org.jboss.common.beans.property
Class PropertyChangeEvent<T>
- java.lang.Object
-
- java.util.EventObject
-
- java.beans.PropertyChangeEvent
-
- org.jboss.common.beans.property.PropertyChangeEvent<T>
-
- All Implemented Interfaces:
java.io.Serializable
public class PropertyChangeEvent<T> extends java.beans.PropertyChangeEvent- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static longserialVersionUID
-
Constructor Summary
Constructors Constructor Description PropertyChangeEvent(java.lang.Object source, java.lang.String propertyName, T oldValue, T newValue)Constructs a newPropertyChangeEvent.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TgetNewValue()TgetOldValue()
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
PropertyChangeEvent
public PropertyChangeEvent(java.lang.Object source, java.lang.String propertyName, T oldValue, T newValue)Constructs a newPropertyChangeEvent.- Parameters:
source- The bean that fired the event.propertyName- The programmatic name of the property that was changed.oldValue- The old value of the property.newValue- The new value of the property.
-
-