Package fi.jumi.threadsafetyagent.util

Examples of fi.jumi.threadsafetyagent.util.DoNotTransformException


    }

    @Override
    public void visit(int version, int access, String name, String signature, String superName, String[] interfaces) {
        if ((access & ACC_INTERFACE) == ACC_INTERFACE) {
            throw new DoNotTransformException();
        }
        myClassName = name;
        super.visit(version, access, name, signature, superName, interfaces);
    }
View Full Code Here


        super.visitEnd();
    }

    private void checkIsTransformationEnabled() {
        if (!myAnnotationDescs.contains(enablerAnnotationDesc)) {
            throw new DoNotTransformException();
        }
    }
View Full Code Here

TOP

Related Classes of fi.jumi.threadsafetyagent.util.DoNotTransformException

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.