public class InnerClassNode extends Object
| 限定符和类型 | 字段和说明 |
|---|---|
int |
access
The access flags of the inner class as originally declared in the
enclosing class.
|
String |
innerName
The (simple) className of the inner class inside its enclosing class.
|
String |
name
The internal className of an inner class (see
getInternalName). |
String |
outerName
The internal className of the class to which the inner class belongs (see
getInternalName). |
| 构造器和说明 |
|---|
InnerClassNode(String name,
String outerName,
String innerName,
int access)
Constructs a new
InnerClassNode. |
public String name
getInternalName).public String outerName
getInternalName). May be
null.public String innerName
public int access
public InnerClassNode(String name, String outerName, String innerName, int access)
InnerClassNode.name - the internal className of an inner class (see
getInternalName).outerName - the internal className of the class to which the inner class
belongs (see getInternalName). May be null.innerName - the (simple) className 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.Copyright © 2022. All rights reserved.