Example usage for org.objectweb.asm.tree InnerClassNode accept

List of usage examples for org.objectweb.asm.tree InnerClassNode accept

Introduction

In this page you can find the example usage for org.objectweb.asm.tree InnerClassNode accept.

Prototype

public void accept(final ClassVisitor classVisitor) 

Source Link

Document

Makes the given class visitor visit this inner class.

Usage

From source file:com.googlecode.dex2jar.asm.OrderInnerOutterInsnNodeClassAdapter.java

License:Apache License

@Override
public void visitEnd() {
    Collections.sort(this.innerClassNodes, this);
    if (innerClassNodes.size() > 0) {
        for (InnerClassNode icn : innerClassNodes) {
            icn.accept(cv);
        }//from w  w  w.ja v  a  2  s  .  c  o  m
    }
    super.visitEnd();
}