proguard.classfile.attribute.visitor.InnerClassesInfoVisitor Java Examples

The following examples show how to use proguard.classfile.attribute.visitor.InnerClassesInfoVisitor. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: InnerClassesAttribute.java    From java-n-IDE-for-Android with Apache License 2.0 5 votes vote down vote up
/**
 * Applies the given visitor to all inner classes.
 */
public void innerClassEntriesAccept(Clazz clazz, InnerClassesInfoVisitor innerClassesInfoVisitor)
{
    for (int index = 0; index < u2classesCount; index++)
    {
        // We don't need double dispatching here, since there is only one
        // type of InnerClassesInfo.
        innerClassesInfoVisitor.visitInnerClassesInfo(clazz, classes[index]);
    }
}