callee.adviseWithAfter();
assertEquals("adviseWithAfter ", LOG);
((Advisable) this).aw_addAdvice(
"call(* test.intercept.call.Callee.adviseWithAfter(..))",
new AfterAdvice() {
public void invoke(JoinPoint jp) throws Throwable {
InterceptTest.log("afterFinally ");
}
}
);