| 
 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectorg.logicalcobwebs.asm.tree.InnerClassNode
public class InnerClassNode
A node that represents an inner class.
| Field Summary | |
|---|---|
|  int | accessThe access flags of the inner class as originally declared in the enclosing class. | 
|  java.lang.String | innerNameThe (simple) name of the inner class inside its enclosing class. | 
|  java.lang.String | nameThe internal name of an inner class (see getInternalName). | 
|  java.lang.String | outerNameThe internal name of the class to which the inner class belongs (see getInternalName). | 
| Constructor Summary | |
|---|---|
| InnerClassNode(java.lang.String name,
               java.lang.String outerName,
               java.lang.String innerName,
               int access)Constructs a new InnerClassNodeobject. | |
| Method Summary | |
|---|---|
|  void | accept(ClassVisitor cv)Makes the given class visitor visit this inner class. | 
| Methods inherited from class java.lang.Object | 
|---|
| clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
| Field Detail | 
|---|
public java.lang.String name
getInternalName).
public java.lang.String outerName
getInternalName). May be
 null.
public java.lang.String innerName
public int access
| Constructor Detail | 
|---|
public InnerClassNode(java.lang.String name,
                      java.lang.String outerName,
                      java.lang.String innerName,
                      int access)
InnerClassNode object.
name - the internal name of an inner class (see getInternalName).outerName - the internal name of the class to which the inner class
      belongs (see getInternalName). May be null.innerName - the (simple) name of the inner class inside its enclosing
      class. May be null for anonymous inner classes.access - the access flags of the inner class as originally declared
      in the enclosing class.| Method Detail | 
|---|
public void accept(ClassVisitor cv)
cv - a class visitor.| 
 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||