InnerClassNodepublic class InnerClassNode extends Object A node that represents an inner class. |
Fields Summary |
---|
public String | nameThe internal name of an inner class (see {@link
oracle.toplink.libraries.asm.Type#getInternalName() getInternalName}). | public String | outerNameThe internal name of the class to which the inner class belongs (see
{@link oracle.toplink.libraries.asm.Type#getInternalName() getInternalName}). May be
null. | public String | innerNameThe (simple) name of the inner class inside its enclosing class. May be
null for anonymous inner classes. | public int | accessThe access flags of the inner class as originally declared in the enclosing
class. |
Constructors Summary |
---|
public InnerClassNode(String name, String outerName, String innerName, int access)Constructs a new {@link InnerClassNode InnerClassNode} object.
this.name = name;
this.outerName = outerName;
this.innerName = innerName;
this.access = access;
|
|