Package org.objectweb.asm.commons

Examples of org.objectweb.asm.commons.RemappingAnnotationAdapter


    }

    @Override
    public AnnotationVisitor visitAnnotation(final String desc, final boolean visible) {
        AnnotationVisitor av = super.visitAnnotation(remapper.mapDesc(desc), visible);
        return av == null ? null : new RemappingAnnotationAdapter(av, remapper) {
            @Override
            public void visitEnum(String name, String enumDesc, String value) {
                if (Type.getType(enumDesc).getClassName().equals(RedefinitionPolicy.class.getName())) {
                    RedefinitionPolicy valueAsEnum = RedefinitionPolicy.valueOf(value);
                    if (Type.getType(desc).getClassName().equals(FieldRedefinitionPolicy.class.getName())) {
View Full Code Here

TOP

Related Classes of org.objectweb.asm.commons.RemappingAnnotationAdapter

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.