Uses of Class
org.aspectj.weaver.patterns.AbstractPatternNodeVisitor

Packages that use AbstractPatternNodeVisitor
org.aspectj.weaver   
org.aspectj.weaver.patterns   
 

Uses of AbstractPatternNodeVisitor in org.aspectj.weaver
 

Subclasses of AbstractPatternNodeVisitor in org.aspectj.weaver
 class PoliceExtensionUse
          Walks a pointcut and determines if the synchronization related designators have been used: lock() or unlock()
 

Uses of AbstractPatternNodeVisitor in org.aspectj.weaver.patterns
 

Subclasses of AbstractPatternNodeVisitor in org.aspectj.weaver.patterns
 class HasMemberTypePatternFinder
           
 class HasThisTypePatternTriedToSneakInSomeGenericOrParameterizedTypePatternMatchingStuffAnywhereVisitor
           
 class PerThisOrTargetPointcutVisitor
          A visitor that turns a pointcut into a type pattern equivalent for a perthis or pertarget matching: - pertarget(target(Foo)) => Foo+ (this one is a special case..) - pertarget(execution(* Foo.do()) => Foo - perthis(call(* Foo.do()) => * - perthis(!call(* Foo.do()) => * (see how the ! has been absorbed here..)