/**
* @Around pc25
*/
public Object aroundAdviceAlteringPrimitive(final JoinPoint joinPoint) throws Throwable {
FieldAdviceTest.log("before ");
FieldRtti rtti = (FieldRtti) joinPoint.getRtti();
rtti.setFieldValue(new Integer(3));
joinPoint.proceed();
FieldAdviceTest.log("after ");
return null;
}