What are the correct names for these pieces

Example

   public pointcut NormalizedMessage_new() :
       call(NormalizedMessage+.new(..));

   Object around() :
       NormalizedMessage_new() {
       logEntering(thisJoinPoint);
       return proceed();
   }

1. (pointcut - this one i can do)
   public pointcut NormalizedMessage_new() :

2.
       call(NormalizedMessage+.new(..));

3.
   Object around() :
       NormalizedMessage_new() {
       logEntering(thisJoinPoint);
       return proceed();
   }

4a.
   Object around() :

4b.
       NormalizedMessage_new() {
       logEntering(thisJoinPoint);
       return proceed();
   }

Thanks
_______________________________________________
aspectj-users mailing list
[email protected]
https://dev.eclipse.org/mailman/listinfo/aspectj-users

Reply via email to