1 7 package com.inversoft.beans; 8 9 10 41 public class PropertyEvent extends BaseEvent { 42 43 private Object index; 44 45 46 51 public PropertyEvent(BaseBeanProperty property, Object oldValue, Object newValue, 52 Object bean, Object index) { 53 super(property, oldValue, newValue, bean); 54 this.index = index; 55 } 56 57 58 64 public Object getIndex() { 65 return index; 66 } 67 } 68 | Popular Tags |