Pointcut represents a pointcut in an Aspect-Oriented Programming Language
like AspectJ. A pointcut is basically a pattern that can be matched against a join
point to check whether the join point is captured. Whether it is captured depends
on the pointcut pattern, which means on the characteristics of the join point.
public function captures(joinPoint:JoinPoint):Boolean
Checks if the given joinPoint is captured by this pointcut.
joinPoint | the join point upon which to make the check |
true if the given joinPoint is captured by this pointcut
else false