类 InnerClassNode
java.lang.Object
org.beetl.ow2.asm.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) className of the inner class inside its enclosing class.The internal className of an inner class (seegetInternalName).The internal className of the class to which the inner class belongs (seegetInternalName). -
构造器概要
构造器构造器说明InnerClassNode(String name, String outerName, String innerName, int access) Constructs a newInnerClassNode. -
方法概要
-
字段详细资料
-
name
The internal className of an inner class (seegetInternalName). -
outerName
The internal className of the class to which the inner class belongs (seegetInternalName). May be null. -
innerName
The (simple) className 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 className of an inner class (seegetInternalName).outerName- the internal className of the class to which the inner class belongs (seegetInternalName). 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.
-
-
方法详细资料
-
accept
Makes the given class visitor visit this inner class.- 参数:
cv- a class visitor.
-