Example usage for org.aspectj.lang JoinPoint interface-usage

List of usage examples for org.aspectj.lang JoinPoint interface-usage

Introduction

In this page you can find the example usage for org.aspectj.lang JoinPoint interface-usage.

Usage

From source file com.github.drinkjava2.jbeanbox.AspectjJoinPoint.java

/**
 * JoinPoint interface detail see AspectJ doc, here is a brief implementation
 * 
 * @author Yong Zhu
 * @since 2.4
 */

From source file org.aspectbench.eaj.lang.JoinPoint.java

/**
 * <p>Provides reflective access to both the state available at a join point and
 * static information about it.  This information is available from the body
 * of advice using the special form <code>thisJoinPoint</code>.  The primary
 * use of this reflective information is for tracing and logging applications.
 * </p>

From source file org.aspectbench.eaj.runtime.reflect.JoinPointImpl.java

public class JoinPointImpl extends org.aspectbench.runtime.reflect.JoinPointImpl implements JoinPoint {
    public JoinPointImpl(org.aspectj.lang.JoinPoint.StaticPart staticPart, Object _this, Object target,
            Object[] args) {
        super(staticPart, _this, target, args);
    }

From source file org.aspectbench.runtime.reflect.JoinPointImpl.java

public class JoinPointImpl implements JoinPoint {
    // We make StaticPartImpl implement both JoinPoint.StaticPart and JoinPoint,
    // because we optimize some JoinPoints to use StaticPartImpl
    public static class StaticPartImpl implements JoinPoint.StaticPart, JoinPoint {
        String kind;
        Signature signature;

From source file org.springframework.security.MockJoinPoint.java

/**
 * A mock AspectJ <code>JoinPoint</code>.
 *
 * @author Ben Alex
 */
@SuppressWarnings("unchecked")