Package jadex.commons.beans
Class IndexedPropertyChangeEvent
- java.lang.Object
- 
- java.util.EventObject
- 
- jadex.commons.beans.PropertyChangeEvent
- 
- jadex.commons.beans.IndexedPropertyChangeEvent
 
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable
 
 public class IndexedPropertyChangeEvent extends PropertyChangeEvent A type ofPropertyChangeEventthat indicates that an indexed property has changed.- Since:
- 1.5
- See Also:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description IndexedPropertyChangeEvent(java.lang.Object source, java.lang.String propertyName, java.lang.Object oldValue, java.lang.Object newValue, int index)Creates a new property changed event with an indication of the property index.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetIndex()Answer the index of the property that was changed in this event.- 
Methods inherited from class jadex.commons.beans.PropertyChangeEventgetNewValue, getOldValue, getPropagationId, getPropertyName, setPropagationId, toString
 
- 
 
- 
- 
- 
Constructor Detail- 
IndexedPropertyChangeEventpublic IndexedPropertyChangeEvent(java.lang.Object source, java.lang.String propertyName, java.lang.Object oldValue, java.lang.Object newValue, int index)Creates a new property changed event with an indication of the property index.- Parameters:
- source- the changed bean.
- propertyName- the changed property, or- nullto indicate an unspecified set of the properties have changed.
- oldValue- the previous value of the property, or- nullif the- propertyNameis- nullor the previous value is unknown.
- newValue- the new value of the property, or- nullif the- propertyNameis- nullor the new value is unknown..
- index- the index of the property.
 
 
- 
 
-