|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface IndexedGetterMonitor
This interface represents something that monitors the invocation of an indexed java bean getter.
| Method Summary | |
|---|---|
void |
propertyGetFailed(java.lang.Object obj,
java.beans.PropertyDescriptor desc,
int ind,
java.lang.Throwable err,
long duration)
This method is called after the getter failed. |
void |
propertyGetting(java.lang.Object obj,
java.beans.PropertyDescriptor desc,
int ind)
This method is called right before the getter is called. |
void |
propertyGot(java.lang.Object obj,
java.beans.PropertyDescriptor desc,
int ind,
java.lang.Object val,
long duration)
This method is called after the getter is called successfully. |
| Method Detail |
|---|
void propertyGetting(java.lang.Object obj,
java.beans.PropertyDescriptor desc,
int ind)
obj - the java bean object.desc - the descriptor for the property.ind - the index.
void propertyGot(java.lang.Object obj,
java.beans.PropertyDescriptor desc,
int ind,
java.lang.Object val,
long duration)
obj - the java bean object.desc - the descriptor for the property.ind - the index.val - the property value.duration - exactly how long it took to run the getter. (in milliseconds)
void propertyGetFailed(java.lang.Object obj,
java.beans.PropertyDescriptor desc,
int ind,
java.lang.Throwable err,
long duration)
obj - the java bean object.desc - the descriptor for the property.ind - the index.err - the exception thrown out of the getter.duration - exactly how long it took to run the getter. (in milliseconds)
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||