blob: 49627bda4e8af1e0af0a36f57b13eb5694e0d375 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
//"XLint warning: thisJoinPoint potentially lazy but stopped by around advice which uses tjp"
public aspect Scenario5 {
public static boolean enabled = true;
pointcut toBeTraced() : execution(* main(..));
before () : toBeTraced() && if(enabled) {
Object[] args = thisJoinPoint.getArgs(); // tjp not made lazily
System.out.println(thisJoinPoint + ", arg's: " + args.length);
}
Object around() : toBeTraced() && if(enabled) {
Object[] args = thisJoinPoint.getArgs(); // tjp used in the around advice
return proceed();
}
}
class Test{
static void main(String [] args){
}
}
|