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