public class InnerClassNode
extends java.lang.Object
| 限定符和类型 | 字段和说明 |
|---|---|
int |
access
The access flags of the inner class as originally declared in the enclosing class.
|
java.lang.String |
innerName
The (simple) name of the inner class inside its enclosing class.
|
java.lang.String |
name
The internal name of an inner class (see
getInternalName). |
java.lang.String |
outerName
The internal name of the class to which the inner class belongs (see
getInternalName). |
| 构造器和说明 |
|---|
InnerClassNode(java.lang.String name,
java.lang.String outerName,
java.lang.String innerName,
int access)
Constructs a new
InnerClassNode. |
| 限定符和类型 | 方法和说明 |
|---|---|
void |
accept(ClassVisitor cv)
Makes the given class visitor visit this inner class.
|
public java.lang.String name
getInternalName).public java.lang.String outerName
getInternalName). May be null.public java.lang.String innerName
public int access
public InnerClassNode(java.lang.String name,
java.lang.String outerName,
java.lang.String innerName,
int access)
InnerClassNode.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.public void accept(ClassVisitor cv)
cv - a class visitor.