Matcher
matches the string representation of a join point against a pattern.
Depending on the implementation the pattern may consist of various wildcards and
logical operators. Common wildcards and operators that are also supported by AspectJ
are:
public function match(joinPoint:String, pattern:String):Boolean
Checks if the passed-in joinPoint
represented by a string matches the
given pattern
.
joinPoint | the join point represented as a string |
pattern | the pattern that may match the given joinPoint string
|
true
if the given joinPoint
matches the given
pattern
else false