类 InnerClassNode
java.lang.Object
cn.taketoday.bytecode.tree.InnerClassNode
A node that represents an inner class.
- 作者:
- Eric Bruneton
-
字段概要
字段修饰符和类型字段说明intThe access flags of the inner class as originally declared in the enclosing class.The (simple) name of the inner class inside its enclosing class.The internal name of an inner class (seeType.getInternalName()).The internal name of the class to which the inner class belongs (seeType.getInternalName()). -
构造器概要
构造器构造器说明InnerClassNode(String name, String outerName, String innerName, int access) Constructs a newInnerClassNode. -
方法概要
修饰符和类型方法说明voidaccept(ClassVisitor classVisitor) Makes the given class visitor visit this inner class.
-
字段详细资料
-
name
The internal name of an inner class (seeType.getInternalName()). -
outerName
The internal name of the class to which the inner class belongs (seeType.getInternalName()). May be null. -
innerName
The (simple) name of the inner class inside its enclosing class. May be null for anonymous inner classes. -
access
public int accessThe access flags of the inner class as originally declared in the enclosing class.
-
-
构造器详细资料
-
InnerClassNode
Constructs a newInnerClassNode.- 参数:
name- the internal name of an inner class (seeType.getInternalName()).outerName- the internal name of the class to which the inner class belongs (seeType.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.
-
-
方法详细资料
-
accept
Makes the given class visitor visit this inner class.- 参数:
classVisitor- a class visitor.
-