| com.tc.object.config.InstrumentationDescriptor
All known Subclasses: com.tc.object.config.InstrumentationDescriptorImpl, com.tc.object.config.NullInstrumentationDescriptor,
InstrumentationDescriptor | interface InstrumentationDescriptor (Code) | | Describes the configuration policy for instrumenation of classes.
author: orion |
getOnLoadMethodIfDefined | public String getOnLoadMethodIfDefined()(Code) | | Returns the name of the method to call after loading an object from the server, or null if none was defined in
config.
|
getOnLoadScriptIfDefined | public String getOnLoadScriptIfDefined()(Code) | | Returns the body of the script to execute after loading an object from the server, or null if none was defined in
config.
|
isCallConstructorOnLoad | public boolean isCallConstructorOnLoad()(Code) | | |
isExclude | public boolean isExclude()(Code) | | true if this is an explicit exclude, false otherwise. It is possible for both isInclude() and isExclude()to return false in the case of the null implementation. This means that it is the default policy and wasn'texplicity defined as an include or an exclude. |
isHonorTransient | public boolean isHonorTransient()(Code) | | true if the class should be instrumented so that the java transient keyword is honored. |
isHonorVolatile | public boolean isHonorVolatile()(Code) | | true if the class should be instrumented so that the java volatile keyword is honored. |
isInclude | public boolean isInclude()(Code) | | true if this is an explicit include, false otherwise. It is possible for both isInclude() and isExclude()to return false in the case of the null implementation. This means that it is the default policy and wasn'texplicity defined as an include or an exclude. |
matches | public boolean matches(ClassInfo classInfo)(Code) | | true if the class name matches this descriptor. |
|
|