< prev index next >
src/java.desktop/share/classes/java/beans/IndexedPropertyChangeEvent.java
Print this page
@@ -25,11 +25,11 @@
package java.beans;
/**
* An "IndexedPropertyChange" event gets delivered whenever a component that
* conforms to the JavaBeans™ specification (a "bean") changes a bound
- * indexed property. This class is an extension of <code>PropertyChangeEvent</code>
+ * 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,11 +44,11 @@
private static final long serialVersionUID = -320227448495806870L;
private int index;
/**
- * Constructs a new <code>IndexedPropertyChangeEvent</code> object.
+ * 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 >