| |
|
| com.tc.object.config.TransparencyCodeSpec
All known Subclasses: com.tc.object.config.TransparencyCodeSpecImpl,
TransparencyCodeSpec | public interface TransparencyCodeSpec (Code) | | Transparency code specification, modifies method code
|
isArrayOperatorInstrumentationReq | public boolean isArrayOperatorInstrumentationReq()(Code) | | Check whether store operations on arrays should be instrumented
True to instrument |
isArraycopyInstrumentationReq | public boolean isArraycopyInstrumentationReq(String className, String methodName)(Code) | | Check whether calling System.arraycopy() should be instrumented
Parameters: className - Class name to check True to instrument |
isFieldInstrumentationReq | public boolean isFieldInstrumentationReq(String fieldName)(Code) | | Check whether field access should be instrumented
Parameters: fieldName - Field to check True to instrument |
isMonitorInstrumentationReq | public boolean isMonitorInstrumentationReq()(Code) | | Check whether MONITORENTER and MONNITOREXIT should be instrumented
True if MONITORENTER and MONNITOREXIT should be instrumented |
isWaitNotifyInstrumentationReq | public boolean isWaitNotifyInstrumentationReq()(Code) | | Check whether wait/notify instructions should be instrumented
True to instrument |
setArrayOperatorInstrumentationReq | public void setArrayOperatorInstrumentationReq(boolean arrayOperatorInstrumentationReq)(Code) | | Set that array store operations should be instrumented
Parameters: arrayOperatorInstrumentationReq - Flag |
setArraycopyInstrumentationReq | public void setArraycopyInstrumentationReq(boolean arraycopyInstrumentationReq)(Code) | | Set that System.arraycopy() should be instrumented
Parameters: arraycopyInstrumentationReq - Flag |
setFieldInstrumentationReq | public void setFieldInstrumentationReq(boolean fieldInstrumentationReq)(Code) | | Set that field access should be instrumented
Parameters: fieldInstrumentationReq - Flag |
setMonitorInstrumentationReq | public void setMonitorInstrumentationReq(boolean monitorInstrumentationReq)(Code) | | Set that MONITORENTER and MONNITOREXIT should be instrumented
Parameters: monitorInstrumentationReq - Flag |
setWaitNotifyInstrumentationReq | public void setWaitNotifyInstrumentationReq(boolean waitNotifyInstrumentationReq)(Code) | | Set that wait/notify should be instrumented
Parameters: waitNotifyInstrumentationReq - Flag |
|
|
|