Package proguard.classfile.constant.visitor

Examples of proguard.classfile.constant.visitor.ConstantVisitor


            }
            programClass.u2interfacesCount = newInterfacesCount;

            // Update the subclasses of the superclass and interfaces of the
            // target class.
            ConstantVisitor subclassAdder =
                new ReferencedClassVisitor(
                new SubclassFilter(programClass,
                new SubclassAdder(programClass)));

            programClass.superClassConstantAccept(subclassAdder);
View Full Code Here


        }
        else
        {
            // This class has become the subclass of its possibly new
            // superclass and of any new interfaces.
            ConstantVisitor subclassAdder =
                new ReferencedClassVisitor(
                new SubclassFilter(programClass,
                new SubclassAdder(programClass)));

            programClass.superClassConstantAccept(subclassAdder);
View Full Code Here

TOP

Related Classes of proguard.classfile.constant.visitor.ConstantVisitor

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.