| java.beans.PropertyChangeEvent java.beans.IndexedPropertyChangeEvent
Method Summary | |
public int | getIndex() Answer the index of the property that was changed in this event. |
IndexedPropertyChangeEvent | public IndexedPropertyChangeEvent(Object source, String propertyName, Object oldValue, Object newValue, int index)(Code) | | Creates a new property changed event with an indication of the property
index.
Parameters: source - the changed bean. Parameters: propertyName - the changed property, or null to indicate anunspecified set of the properties have changed. Parameters: oldValue - the previous value of the property, or null ifthe propertyName is null or theprevious value is unknown. Parameters: newValue - the new value of the property, or null if thepropertyName is null or the newvalue is unknown.. Parameters: index - the index of the property. |
getIndex | public int getIndex()(Code) | | Answer the index of the property that was changed in this event.
The property element index. |
|
|