|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.objectweb.asm.tree.LocalVariableNode
public class LocalVariableNode
A node that represents a local variable declaration.
| Field Summary | |
|---|---|
String |
desc
The type descriptor of this local variable. |
LabelNode |
end
The last instruction corresponding to the scope of this local variable (exclusive). |
int |
index
The local variable's index. |
String |
name
The name of a local variable. |
String |
signature
The signature of this local variable. |
LabelNode |
start
The first instruction corresponding to the scope of this local variable (inclusive). |
| Constructor Summary | |
|---|---|
LocalVariableNode(String name,
String desc,
String signature,
LabelNode start,
LabelNode end,
int index)
Constructs a new LocalVariableNode. |
|
| Method Summary | |
|---|---|
void |
accept(MethodVisitor mv)
Makes the given visitor visit this local variable declaration. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
public String name
public String desc
public String signature
public LabelNode start
public LabelNode end
public int index
| Constructor Detail |
|---|
public LocalVariableNode(String name,
String desc,
String signature,
LabelNode start,
LabelNode end,
int index)
LocalVariableNode.
name - the name 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.| Method Detail |
|---|
public void accept(MethodVisitor mv)
mv - a method visitor.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||