Package test.attribdef.aspect

Source Code of test.attribdef.aspect.CFlowTestAspect

/**************************************************************************************
* Copyright (c) Jonas Bon�r, Alexandre Vasseur. All rights reserved.                 *
* http://aspectwerkz.codehaus.org                                                    *
* ---------------------------------------------------------------------------------- *
* The software in this package is published under the terms of the QPL license       *
* a copy of which has been included with this distribution in the license.txt file.  *
**************************************************************************************/
package test.attribdef.aspect;

import org.codehaus.aspectwerkz.attribdef.Pointcut;
import org.codehaus.aspectwerkz.attribdef.aspect.Aspect;
import org.codehaus.aspectwerkz.joinpoint.JoinPoint;
import org.codehaus.aspectwerkz.joinpoint.MethodJoinPoint;
import test.attribdef.Loggable;

/**
* @Aspect perJVM
*
* @author <a href="mailto:jboner@codehaus.org">Jonas Bon�r</a>
*/
public class CFlowTestAspect extends Aspect {

    // ============ Pointcuts ============

    /** @CFlow * test.attribdef.CFlowTest.step1() */
    Pointcut pc1;
    /** @Execution * test.attribdef.CFlowTest.step2() */
    Pointcut pc2;

    // ============ Advices ============

    /**
     * @Around pc1 && pc2
     */
    public Object execute(final JoinPoint joinPoint) throws Throwable {
        MethodJoinPoint jp = (MethodJoinPoint)joinPoint;
        ((Loggable)jp.getTargetInstance()).log("advice-before ");
        final Object result = joinPoint.proceed();
        ((Loggable)jp.getTargetInstance()).log("advice-after ");
        return result;
    }
}
TOP

Related Classes of test.attribdef.aspect.CFlowTestAspect

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.