int tmp1 = adviseWithAroundStack;
assertEquals("", LOG);
((Advisable) this).aw_addAdvice(
"get(* test.intercept.get.InterceptTest.adviseWithAroundStack)",
new AroundAdvice() {
public Object invoke(JoinPoint jp) throws Throwable {
InterceptTest.log("around2_pre ");
Object result = jp.proceed();
InterceptTest.log("around2_post ");
return result;
}
}
);
LOG = "";
int tmp2 = adviseWithAroundStack;
assertEquals("around2_pre around2_post ", LOG);
((Advisable) this).aw_addAdvice(
"get(* test.intercept.get.InterceptTest.adviseWithAroundStack)",
new AroundAdvice() {
public Object invoke(JoinPoint jp) throws Throwable {
InterceptTest.log("around3_pre ");
Object result = jp.proceed();
InterceptTest.log("around3_post ");
return result;