Example usage for org.springframework.aop.aspectj RuntimeTestWalker RuntimeTestWalker

List of usage examples for org.springframework.aop.aspectj RuntimeTestWalker RuntimeTestWalker

Introduction

In this page you can find the example usage for org.springframework.aop.aspectj RuntimeTestWalker RuntimeTestWalker.

Prototype

public RuntimeTestWalker(ShadowMatch shadowMatch) 

Source Link

Usage

From source file:org.springframework.aop.aspectj.AspectJExpressionPointcut.java

private RuntimeTestWalker getRuntimeTestWalker(ShadowMatch shadowMatch) {
    if (shadowMatch instanceof DefensiveShadowMatch) {
        return new RuntimeTestWalker(((DefensiveShadowMatch) shadowMatch).primary);
    }/*from   w ww . jav a 2  s .co  m*/
    return new RuntimeTestWalker(shadowMatch);
}