Examples of MemberSignature


Examples of org.codehaus.aspectwerkz.joinpoint.MemberSignature

    /**
     * @Before logSet
     * @Before logGet
     */
    public void logEntry(final JoinPoint joinPoint) throws Throwable {
        MemberSignature signature = (MemberSignature)joinPoint.getSignature();
        System.out.println("ENTER: " + joinPoint.getTargetClass().getName() + "::" + signature.getName());
    }
View Full Code Here

Examples of org.codehaus.aspectwerkz.joinpoint.MemberSignature

    /**
     * @After logSet
     * @After logGet
     */
    public void logExit(final JoinPoint joinPoint) throws Throwable {
        MemberSignature signature = (MemberSignature)joinPoint.getSignature();
        System.out.println("EXIT: " + joinPoint.getTargetClass().getName() + "::" + signature.getName());
    }
View Full Code Here

Examples of org.codehaus.aspectwerkz.joinpoint.MemberSignature

public class TraceAspect
{
    int m_level = 0;
   
    public Object trace(JoinPoint joinPoint) throws Throwable {
        MemberSignature signature = (MemberSignature)joinPoint.getSignature();
        indent();
        System.out.println(
                joinPoint.getType() + "--> " + joinPoint.getTargetClass().getName() + "::" + signature.getName()
        );
        m_level++;
        final Object result = joinPoint.proceed();
        m_level--;
        indent();
        System.out.println(
                joinPoint.getType() + "<-- " + joinPoint.getTargetClass().getName() + "::" + signature.getName()
        );
        return result;
    }
View Full Code Here

Examples of org.codehaus.aspectwerkz.joinpoint.MemberSignature

    /**
     * @Around methodsToLog
     */
    public Object logMethod(StaticJoinPoint joinPoint) throws Throwable {
        MemberSignature signature = (MemberSignature) joinPoint.getSignature();
        indent();
        System.out.println(
                "--> "
                + joinPoint.getTargetClass().getName()
                + "::"
                + signature.getName()
        );
        m_level++;
        final Object result = joinPoint.proceed();
        m_level--;
        indent();
        System.out.println(
                "<-- "
                + joinPoint.getTargetClass().getName()
                + "::"
                + signature.getName()
        );
        return result;
    }
View Full Code Here

Examples of org.codehaus.aspectwerkz.joinpoint.MemberSignature

    /**
     * @Before methodsToLog
     */
    public void logBefore(final StaticJoinPoint joinPoint) throws Throwable {
        MemberSignature signature = (MemberSignature) joinPoint.getSignature();
        System.out.println(
                "BEFORE: "
                + joinPoint.getTargetClass().getName()
                + "::"
                + signature.getName()
        );
    }
View Full Code Here

Examples of org.codehaus.aspectwerkz.joinpoint.MemberSignature

    /**
     * @AfterReturning(type="java.lang.String", pointcut="methodsToLog")
     */
    public void logAfterReturning(final StaticJoinPoint joinPoint) throws Throwable {
        MemberSignature signature = (MemberSignature) joinPoint.getSignature();
        System.out.println(
                "AFTER RETURNING: "
                + joinPoint.getTargetClass().getName()
                + "::"
                + signature.getName()
        );
    }
View Full Code Here

Examples of org.codehaus.aspectwerkz.joinpoint.MemberSignature

    /**
     * @AfterThrowing(type="java.lang.RuntimeException", pointcut="methodsToLog")
     */
    public void logAfterThrowingRE(final StaticJoinPoint joinPoint) throws Throwable {
        MemberSignature signature = (MemberSignature) joinPoint.getSignature();
        System.out.println(
                "AFTER THROWING RE: "
                + joinPoint.getTargetClass().getName()
                + "::"
                + signature.getName()
        );
    }
View Full Code Here

Examples of org.codehaus.aspectwerkz.joinpoint.MemberSignature

    /**
     * @AfterThrowing(type="java.lang.IllegalArgumentException", pointcut="methodsToLog")
     */
    public void logAfterThrowingIAE(final StaticJoinPoint joinPoint) throws Throwable {
        MemberSignature signature = (MemberSignature) joinPoint.getSignature();
        System.out.println(
                "AFTER THROWING IAE: "
                + joinPoint.getTargetClass().getName()
                + "::"
                + signature.getName()
        );
    }
View Full Code Here

Examples of org.codehaus.aspectwerkz.joinpoint.MemberSignature

    /**
     * @AfterFinally methodsToLog
     */
    public void logAfterFinally(final StaticJoinPoint joinPoint) throws Throwable {
        MemberSignature signature = (MemberSignature) joinPoint.getSignature();
        System.out.println(
                "AFTER FINALLY: "
                + joinPoint.getTargetClass().getName()
                + "::"
                + signature.getName()
        );
    }
View Full Code Here

Examples of org.codehaus.aspectwerkz.joinpoint.MemberSignature

public class XmlDefLoggingAspect {

    private int m_level = 0;

    public Object logMethod(JoinPoint joinPoint) throws Throwable {
        MemberSignature signature = (MemberSignature) joinPoint.getSignature();
        indent();
        System.out.println(
                "--> "
                + joinPoint.getTargetClass().getName()
                + "::"
                + signature.getName()
        );
        m_level++;
        final Object result = joinPoint.proceed();
        m_level--;
        indent();
        System.out.println(
                "<-- "
                + joinPoint.getTargetClass().getName()
                + "::"
                + signature.getName()
        );
        return result;
    }
View Full Code Here
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.