public IndexedPropertyChangeEvent(Object source, String propertyName, Object oldValue, Object newValue, int index)Creates a new property changed event with an indication of the property
index.
super(source, propertyName, oldValue, newValue);
this.index = index;
|