1 7 package java.beans; 8 9 26 public class IndexedPropertyChangeEvent extends PropertyChangeEvent { 27 28 private int index; 29 30 40 public IndexedPropertyChangeEvent(Object source, String propertyName, 41 Object oldValue, Object newValue, 42 int index) { 43 super (source, propertyName, oldValue, newValue); 44 this.index = index; 45 } 46 47 48 54 public int getIndex() { 55 return index; 56 } 57 } 58 59 | Popular Tags |