A new subclass of PropertyChangeEvent
named
IndexedPropertyChangeEvent
has been added to support bound properties that use an index to
identify the part of the bean that changed. Also, three methods,
all named
fireIndexedPropertyChange
, have been added to the
PropertyChangeSupport
utility class to support firing
indexed property change events. You can find an example of using
indexed property change events in IndexedTest.java
.
A new method called
createPropertyEditor
has been added to the
PropertyDescriptor
class.
The two
PropertyEditorSupport
constructors are now public
instead of protected, so that PropertyEditorSupport
objects can be more easily created and used as delegates. Also, the
source object is now exposed by means of new
setSource
and
getSource
methods.