Package org.aspectj.weaver.tools
Interface StandardPointcutExpression
-
- All Known Implementing Classes:
StandardPointcutExpressionImpl
public interface StandardPointcutExpression
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleancouldMatchJoinPointsInType(Class aClass)StringgetPointcutExpression()ShadowMatchmatchesMethodCall(ResolvedMember aMethod, ResolvedMember withinCode)ShadowMatchmatchesMethodExecution(ResolvedMember aMethod)ShadowMatchmatchesStaticInitialization(ResolvedType aType)booleanmayNeedDynamicTest()voidsetMatchingContext(MatchingContext aMatchContext)
-
-
-
Method Detail
-
setMatchingContext
void setMatchingContext(MatchingContext aMatchContext)
-
couldMatchJoinPointsInType
boolean couldMatchJoinPointsInType(Class aClass)
-
mayNeedDynamicTest
boolean mayNeedDynamicTest()
-
matchesMethodExecution
ShadowMatch matchesMethodExecution(ResolvedMember aMethod)
-
matchesStaticInitialization
ShadowMatch matchesStaticInitialization(ResolvedType aType)
-
matchesMethodCall
ShadowMatch matchesMethodCall(ResolvedMember aMethod, ResolvedMember withinCode)
-
getPointcutExpression
String getPointcutExpression()
-
-