Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[aspectj-users] Is this possible in AspectJ

public aspect myAspect{

 public pointcut p1(..): call(..);

}


public aspect aspect2{

   before(..) : p1(..){

   }

}

Given that aspect2 kind of "import" myAspect?

_________________________________________________________________
Tired of spam? Get advanced junk mail protection with MSN 8. http://join.msn.com/?page=features/junkmail



Back to the top