Uses of Class
org.aspectj.weaver.ast.Test

Packages that use Test
org.aspectj.weaver.ast   
org.aspectj.weaver.bcel   
org.aspectj.weaver.internal.tools   
org.aspectj.weaver.patterns   
org.aspectj.weaver.reflect   
 

Uses of Test in org.aspectj.weaver.ast
 

Subclasses of Test in org.aspectj.weaver.ast
 class And
           
 class Call
           
 class FieldGetCall
           
 class HasAnnotation
           
 class Instanceof
           
 class Literal
           
 class Not
           
 class Or
           
 

Methods in org.aspectj.weaver.ast that return Test
 Test Not.getBody()
           
 Test Or.getLeft()
           
 Test And.getLeft()
           
 Test Or.getRight()
           
 Test And.getRight()
           
static Test Test.makeAnd(Test a, Test b)
           
static Test Test.makeCall(Member m, Expr[] args)
           
static Test Test.makeFieldGetCall(Member f, Member m, Expr[] args)
           
static Test Test.makeHasAnnotation(Var v, ResolvedType annTy)
           
static Test Test.makeInstanceof(Var v, ResolvedType ty)
           
static Test Test.makeNot(Test a)
           
static Test Test.makeOr(Test a, Test b)
           
 

Methods in org.aspectj.weaver.ast with parameters of type Test
static Test Test.makeAnd(Test a, Test b)
           
static Test Test.makeNot(Test a)
           
static Test Test.makeOr(Test a, Test b)
           
 

Constructors in org.aspectj.weaver.ast with parameters of type Test
And(Test left, Test right)
           
Not(Test test)
           
Or(Test left, Test right)
           
 

Uses of Test in org.aspectj.weaver.bcel
 

Methods in org.aspectj.weaver.bcel with parameters of type Test
static InstructionList BcelRenderer.renderTest(InstructionFactory fact, BcelWorld world, Test e, InstructionHandle sk, InstructionHandle fk, InstructionHandle next)
           
 

Uses of Test in org.aspectj.weaver.internal.tools
 

Subclasses of Test in org.aspectj.weaver.internal.tools
 class MatchingContextBasedTest
          Test that uses MatchingContext to match (or not)
 

Uses of Test in org.aspectj.weaver.patterns
 

Methods in org.aspectj.weaver.patterns that return Test
 Test Pointcut.findResidue(Shadow shadow, ExposedState state)
          This can be called from NotPointcut even for Pointcuts that don't match the shadow
 Test PerSingleton.findResidueInternal(Shadow shadow, ExposedState state)
           
 

Uses of Test in org.aspectj.weaver.reflect
 

Constructors in org.aspectj.weaver.reflect with parameters of type Test
ShadowMatchImpl(FuzzyBoolean match, Test test, ExposedState state, PointcutParameter[] params)
           
StandardShadowMatchImpl(FuzzyBoolean match, Test test, ExposedState state, PointcutParameter[] params)