|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ShadowMatch | |
---|---|
org.aspectj.weaver.internal.tools | |
org.aspectj.weaver.reflect | |
org.aspectj.weaver.tools |
Uses of ShadowMatch in org.aspectj.weaver.internal.tools |
---|
Methods in org.aspectj.weaver.internal.tools that return ShadowMatch | |
---|---|
ShadowMatch |
PointcutExpressionImpl.matchesAdviceExecution(java.lang.reflect.Method aMethod)
|
ShadowMatch |
PointcutExpressionImpl.matchesConstructorCall(java.lang.reflect.Constructor aConstructor,
java.lang.Class callerType)
|
ShadowMatch |
PointcutExpressionImpl.matchesConstructorCall(java.lang.reflect.Constructor aConstructor,
java.lang.reflect.Member withinCode)
|
ShadowMatch |
StandardPointcutExpressionImpl.matchesConstructorExecution(java.lang.reflect.Constructor aConstructor)
|
ShadowMatch |
PointcutExpressionImpl.matchesConstructorExecution(java.lang.reflect.Constructor aConstructor)
|
ShadowMatch |
PointcutExpressionImpl.matchesFieldGet(java.lang.reflect.Field aField,
java.lang.Class withinType)
|
ShadowMatch |
PointcutExpressionImpl.matchesFieldGet(java.lang.reflect.Field aField,
java.lang.reflect.Member withinCode)
|
ShadowMatch |
PointcutExpressionImpl.matchesFieldSet(java.lang.reflect.Field aField,
java.lang.Class withinType)
|
ShadowMatch |
PointcutExpressionImpl.matchesFieldSet(java.lang.reflect.Field aField,
java.lang.reflect.Member withinCode)
|
ShadowMatch |
PointcutExpressionImpl.matchesHandler(java.lang.Class exceptionType,
java.lang.Class handlingType)
|
ShadowMatch |
PointcutExpressionImpl.matchesHandler(java.lang.Class exceptionType,
java.lang.reflect.Member withinCode)
|
ShadowMatch |
PointcutExpressionImpl.matchesInitialization(java.lang.reflect.Constructor aConstructor)
|
ShadowMatch |
PointcutExpressionImpl.matchesMethodCall(java.lang.reflect.Method aMethod,
java.lang.Class callerType)
|
ShadowMatch |
PointcutExpressionImpl.matchesMethodCall(java.lang.reflect.Method aMethod,
java.lang.reflect.Member withinCode)
|
ShadowMatch |
StandardPointcutExpressionImpl.matchesMethodCall(ResolvedMember aMethod,
ResolvedMember withinCode)
|
ShadowMatch |
PointcutExpressionImpl.matchesMethodExecution(java.lang.reflect.Method aMethod)
|
ShadowMatch |
StandardPointcutExpressionImpl.matchesMethodExecution(ResolvedMember aMethod)
|
ShadowMatch |
PointcutExpressionImpl.matchesPreInitialization(java.lang.reflect.Constructor aConstructor)
|
ShadowMatch |
PointcutExpressionImpl.matchesStaticInitialization(java.lang.Class aClass)
|
ShadowMatch |
StandardPointcutExpressionImpl.matchesStaticInitialization(ResolvedType aType)
|
Uses of ShadowMatch in org.aspectj.weaver.reflect |
---|
Classes in org.aspectj.weaver.reflect that implement ShadowMatch | |
---|---|
class |
ShadowMatchImpl
|
class |
StandardShadowMatchImpl
|
Uses of ShadowMatch in org.aspectj.weaver.tools |
---|
Methods in org.aspectj.weaver.tools that return ShadowMatch | |
---|---|
ShadowMatch |
PointcutExpression.matchesAdviceExecution(java.lang.reflect.Method anAdviceMethod)
Determine whether or not this pointcut matches the execution of a given piece of advice. |
ShadowMatch |
PointcutExpression.matchesConstructorCall(java.lang.reflect.Constructor aConstructor,
java.lang.Class callerType)
Determine whether or not this pointcut matches a method call to the given constructor, made outside of the scope of any method or constructor, but within the callerType. |
ShadowMatch |
PointcutExpression.matchesConstructorCall(java.lang.reflect.Constructor aConstructor,
java.lang.reflect.Member withinCode)
Determine whether or not this pointcut matches a method call to the given constructor, made during the execution of the given method or constructor. |
ShadowMatch |
PointcutExpression.matchesConstructorExecution(java.lang.reflect.Constructor aConstructor)
Determine whether or not this pointcut matches the execution of a given constructor. |
ShadowMatch |
PointcutExpression.matchesFieldGet(java.lang.reflect.Field aField,
java.lang.Class withinType)
Determine whether or not this pointcut matches a get of the given field outside of the scope of any method or constructor, but within the given type (for example, during static initialization). |
ShadowMatch |
PointcutExpression.matchesFieldGet(java.lang.reflect.Field aField,
java.lang.reflect.Member withinCode)
Determine whether or not this pointcut matches a get of the given field from within the given method or constructor. |
ShadowMatch |
PointcutExpression.matchesFieldSet(java.lang.reflect.Field aField,
java.lang.Class withinType)
Determine whether or not this pointcut matches a set of the given field outside of the scope of any method or constructor, but within the given type (for example, during static initialization). |
ShadowMatch |
PointcutExpression.matchesFieldSet(java.lang.reflect.Field aField,
java.lang.reflect.Member withinCode)
Determine whether or not this pointcut matches a set of the given field from within the given method or constructor. |
ShadowMatch |
PointcutExpression.matchesHandler(java.lang.Class exceptionType,
java.lang.Class handlingType)
Determine whether or not this pointcut matches the execution of a given exception handler outside of the scope of any method or constructor, but within the handling type. |
ShadowMatch |
PointcutExpression.matchesHandler(java.lang.Class exceptionType,
java.lang.reflect.Member withinCode)
Determine whether or not this pointcut matches the execution of a given exception handler within the given method or constructor |
ShadowMatch |
PointcutExpression.matchesInitialization(java.lang.reflect.Constructor aConstructor)
Determine whether or not this pointcut matches the initialization of an object initiated by a call to the given constructor. |
ShadowMatch |
PointcutExpression.matchesMethodCall(java.lang.reflect.Method aMethod,
java.lang.Class callerType)
Determine whether or not this pointcut matches a method call to the given method, made outside of the scope of any method or constructor, but within the callerType (for example, during static initialization of the type). |
ShadowMatch |
PointcutExpression.matchesMethodCall(java.lang.reflect.Method aMethod,
java.lang.reflect.Member withinCode)
Determine whether or not this pointcut matches a method call to the given method, made during the execution of the given method or constructor. |
ShadowMatch |
StandardPointcutExpression.matchesMethodCall(ResolvedMember aMethod,
ResolvedMember withinCode)
Determine whether or not this pointcut matches a method call to the given method, made during the execution of the given method or constructor. |
ShadowMatch |
PointcutExpression.matchesMethodExecution(java.lang.reflect.Method aMethod)
Determine whether or not this pointcut matches the execution of a given method. |
ShadowMatch |
StandardPointcutExpression.matchesMethodExecution(ResolvedMember aMethod)
Determine whether or not this pointcut matches the execution of a given method. |
ShadowMatch |
PointcutExpression.matchesPreInitialization(java.lang.reflect.Constructor aConstructor)
Determine whether or not this pointcut matches the pre-initialization of an object initiated by a call to the given constructor. |
ShadowMatch |
PointcutExpression.matchesStaticInitialization(java.lang.Class aClass)
Determine whether or not this pointcut matches the static initialization of the given class. |
ShadowMatch |
StandardPointcutExpression.matchesStaticInitialization(ResolvedType aType)
Determine whether or not this pointcut matches the static initialization of the given class. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |