Interface org.as2lib.aop.Pointcut

org.as2lib.core.BasicInterface
   +--org.as2lib.aop.Pointcut

Description

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.

Method Index

captures()

Inherited from BasicInterface

toString()

Method Detail

captures

public function captures(joinPoint:JoinPoint):Boolean

Checks if the given joinPoint is captured by this pointcut.

Parameters

joinPointthe join point upon which to make the check

Return

true if the given joinPoint is captured by this pointcut else false