Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[aspectj-users] Semantics Question (What are the correct names for these pieces?)

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


Back to the top