| 
 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectorg.logicalcobwebs.asm.tree.LocalVariableNode
public class LocalVariableNode
A node that represents a local variable declaration.
| Field Summary | |
|---|---|
|  java.lang.String | descThe type descriptor of this local variable. | 
|  Label | endThe last instruction corresponding to the scope of this local variable (exclusive). | 
|  int | indexThe local variable's index. | 
|  java.lang.String | nameThe name of a local variable. | 
|  Label | startThe first instruction corresponding to the scope of this local variable (inclusive). | 
| Constructor Summary | |
|---|---|
| LocalVariableNode(java.lang.String name,
                  java.lang.String desc,
                  Label start,
                  Label end,
                  int index)Constructs a new LocalVariableNodeobject. | |
| Method Summary | |
|---|---|
|  void | accept(CodeVisitor cv)Makes the given code 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 java.lang.String name
public java.lang.String desc
public Label start
public Label end
public int index
| Constructor Detail | 
|---|
public LocalVariableNode(java.lang.String name,
                         java.lang.String desc,
                         Label start,
                         Label end,
                         int index)
LocalVariableNode object.
name - the name of a local variable.desc - the type descriptor of this local variable.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(CodeVisitor cv)
cv - a code visitor.| 
 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||