| java.lang.Object org.ejb3unit.asm.tree.LocalVariableNode
LocalVariableNode | public class LocalVariableNode (Code) | | A node that represents a local variable declaration.
author: Eric Bruneton |
Field Summary | |
public String | desc The type descriptor of this local variable. | public LabelNode | end The last instruction corresponding to the scope of this local variable
(exclusive). | public int | index The local variable's index. | public String | name The name of a local variable. | public String | signature The signature of this local variable. | public LabelNode | start The first instruction corresponding to the scope of this local variable
(inclusive). |
Method Summary | |
public void | accept(MethodVisitor mv) Makes the given visitor visit this local variable declaration. |
desc | public String desc(Code) | | The type descriptor of this local variable.
|
end | public LabelNode end(Code) | | The last instruction corresponding to the scope of this local variable
(exclusive).
|
index | public int index(Code) | | The local variable's index.
|
signature | public String signature(Code) | | The signature of this local variable. May be null.
|
start | public LabelNode start(Code) | | The first instruction corresponding to the scope of this local variable
(inclusive).
|
LocalVariableNode | public LocalVariableNode(String name, String desc, String signature, LabelNode start, LabelNode end, int index)(Code) | | Constructs a new
LocalVariableNode .
Parameters: name - the name of a local variable. Parameters: desc - the type descriptor of this local variable. Parameters: signature - the signature of this local variable. May benull. Parameters: start - the first instruction corresponding to the scope of thislocal variable (inclusive). Parameters: end - the last instruction corresponding to the scope of this localvariable (exclusive). Parameters: index - the local variable's index. |
accept | public void accept(MethodVisitor mv)(Code) | | Makes the given visitor visit this local variable declaration.
Parameters: mv - a method visitor. |
|
|