blob: 2d9774250d64a0cb98505bc7833827b67e6f62ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
package p;
public class AspectTargetClass
{
@MonitorableMethod(ApiDescriptor.TARGET_CLASS_TARGET_METHOD)
public void aspectTargetMethod()
{
System.out.println("In target method");
}
}
|