Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[aspectj-users] [ajdt-dev] Reflection Question

hi guys,
 
Eclips 3.0
JAspect 1.1.12
 
I am getting a compiler error when I efine my aspect to have a "Reflection" inside it.
Does anyone has any idea why thisis happening. If I remove th e"Reflection" word, it compiles fine!!!
Thanks
Nizar
 
here is the simple code:
 
-------------------------------------------------------
public aspect Reflection Tracer1 {
 
 pointcut publics(): execution(public void Buffer.put(String));
 before(): publics(){
  System.out.println("Before:" +thisJoinPoint);
  }
 
after():publics(){
  System.out.println("After:" + thisJoinPoint);
 }
 
}
-------------------------------------------------------

Back to the top