add parameter to allow choose use code or bytecode modification for private member access

This commit is contained in:
金戟 2020-08-02 22:55:32 +08:00
parent 276c23e906
commit 78d3b2ea90

View File

@ -12,4 +12,9 @@ import java.lang.annotation.*;
@Documented @Documented
public @interface EnableTestable { public @interface EnableTestable {
/**
* Whether use compile time code modification
*/
boolean withoutAgent() default false;
} }