< prev index next >

src/java.desktop/share/classes/java/beans/IndexedPropertyChangeEvent.java

Print this page

        

*** 25,35 **** package java.beans; /** * An "IndexedPropertyChange" event gets delivered whenever a component that * conforms to the JavaBeans&trade; specification (a "bean") changes a bound ! * indexed property. This class is an extension of <code>PropertyChangeEvent</code> * but contains the index of the property that has changed. * <P> * Null values may be provided for the old and the new values if their * true values are not known. * <P> --- 25,35 ---- package java.beans; /** * An "IndexedPropertyChange" event gets delivered whenever a component that * conforms to the JavaBeans&trade; specification (a "bean") changes a bound ! * indexed property. This class is an extension of {@code PropertyChangeEvent} * but contains the index of the property that has changed. * <P> * Null values may be provided for the old and the new values if their * true values are not known. * <P>
*** 44,54 **** private static final long serialVersionUID = -320227448495806870L; private int index; /** ! * Constructs a new <code>IndexedPropertyChangeEvent</code> object. * * @param source The bean that fired the event. * @param propertyName The programmatic name of the property that * was changed. * @param oldValue The old value of the property. --- 44,54 ---- private static final long serialVersionUID = -320227448495806870L; private int index; /** ! * Constructs a new {@code IndexedPropertyChangeEvent} object. * * @param source The bean that fired the event. * @param propertyName The programmatic name of the property that * was changed. * @param oldValue The old value of the property.
< prev index next >