Package org.codehaus.aspectwerkz.joinpoint

Examples of org.codehaus.aspectwerkz.joinpoint.StaticFieldSetJoinPoint


    public void execute(final JoinPoint joinPoint) throws Throwable {
        FieldJoinPoint fjp = (FieldJoinPoint)joinPoint;

        // if static field not handled correctly but handled as a member field
        // this will throw a class cast exception
        StaticFieldSetJoinPoint sgfjp = (StaticFieldSetJoinPoint)fjp;

        CollectionFieldTest.s_log += "MyPreAdvice1 ";
    }
View Full Code Here


    public void execute(final JoinPoint joinPoint) throws Throwable {
        FieldJoinPoint fjp = (FieldJoinPoint)joinPoint;

        // if static field not handled correctly but handled as a member field
        // this will throw a class cast exception
        StaticFieldSetJoinPoint sgfjp = (StaticFieldSetJoinPoint)fjp;

        CollectionFieldTest.s_log += "MyPreAdvice1 ";
    }
View Full Code Here

TOP

Related Classes of org.codehaus.aspectwerkz.joinpoint.StaticFieldSetJoinPoint

Copyright © 2018 www.massapicom. 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.