类 ParameterNode
java.lang.Object
org.beetl.ow2.asm.tree.ParameterNode
A node that represents a parameter access and className.
- 作者:
- Remi Forax
-
字段概要
字段 -
构造器概要
构造器 -
方法概要
修饰符和类型方法说明voidaccept(MethodVisitor mv) Makes the given visitor visit this parameter declaration.
-
字段详细资料
-
name
The parameter's className. -
access
public int accessThe parameter's access flags (seeOpcodes). Valid values are ACC_FINAL, ACC_SYNTHETIC and ACC_MANDATED.
-
-
构造器详细资料
-
ParameterNode
Constructs a newParameterNode.- 参数:
access- The parameter's access flags. Valid values are ACC_FINAL, ACC_SYNTHETIC or/and ACC_MANDATED (seeOpcodes).name- the parameter's className.
-
-
方法详细资料
-
accept
Makes the given visitor visit this parameter declaration.- 参数:
mv- a method visitor.
-