类 LocalVariableNode
java.lang.Object
org.beetl.ow2.asm.tree.LocalVariableNode
A node that represents a local variable declaration.
- 作者:
- Eric Bruneton
-
字段概要
字段修饰符和类型字段说明The type descriptor of this local variable.The last instruction corresponding to the scope of this local variable (exclusive).intThe local variable's index.The className of a local variable.The signature of this local variable.The first instruction corresponding to the scope of this local variable (inclusive). -
构造器概要
构造器构造器说明LocalVariableNode(String name, String desc, String signature, LabelNode start, LabelNode end, int index) Constructs a newLocalVariableNode. -
方法概要
修饰符和类型方法说明voidaccept(MethodVisitor mv) Makes the given visitor visit this local variable declaration.
-
字段详细资料
-
name
The className of a local variable. -
desc
The type descriptor of this local variable. -
signature
The signature of this local variable. May be null. -
start
The first instruction corresponding to the scope of this local variable (inclusive). -
end
The last instruction corresponding to the scope of this local variable (exclusive). -
index
public int indexThe local variable's index.
-
-
构造器详细资料
-
LocalVariableNode
public LocalVariableNode(String name, String desc, String signature, LabelNode start, LabelNode end, int index) Constructs a newLocalVariableNode.- 参数:
name- the className of a local variable.desc- the type descriptor of this local variable.signature- the signature of this local variable. May be null.start- the first instruction corresponding to the scope of this local variable (inclusive).end- the last instruction corresponding to the scope of this local variable (exclusive).index- the local variable's index.
-
-
方法详细资料
-
accept
Makes the given visitor visit this local variable declaration.- 参数:
mv- a method visitor.
-