1 package jfun.yan.monitoring; 2 3 import java.beans.PropertyDescriptor ; 4 11 public interface IndexedGetterMonitor { 12 18 void propertyGetting(Object obj, PropertyDescriptor desc, int ind); 19 27 void propertyGot(Object obj, PropertyDescriptor desc, int ind, Object val, long duration); 28 36 void propertyGetFailed(Object obj, PropertyDescriptor desc, int ind, 37 Throwable err, long duration); 38 } 39 | Popular Tags |