Package proguard.classfile.attribute.visitor

Examples of proguard.classfile.attribute.visitor.AttributeNameFilter


            programClass.fieldsAccept(memberAdder);
            programClass.methodsAccept(memberAdder);

            // Copy over the other attributes.
            programClass.attributesAccept(
                new AttributeNameFilter(new NotMatcher(new OrMatcher(new OrMatcher(
                    new FixedStringMatcher(ClassConstants.ATTR_SourceFile),
                    new FixedStringMatcher(ClassConstants.ATTR_InnerClasses)),
                    new FixedStringMatcher(ClassConstants.ATTR_EnclosingMethod))),
                new AttributeAdder(targetClass, true)));
View Full Code Here

TOP

Related Classes of proguard.classfile.attribute.visitor.AttributeNameFilter

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.