LocalVariablepublic class LocalVariable extends Object
Fields Summary |
---|
private String | name | private String | type | private int | length | private int | slot | private long | codeIndex |
Constructors Summary |
---|
public LocalVariable(String name, String type, int codeIndex, int length, int slot)
this.name = name;
this.type = type;
this.codeIndex = codeIndex;
this.length = length;
this.slot = slot;
|
Methods Summary |
---|
public long | getCodeIndex()
return codeIndex;
| public int | getLength()
return length;
| public java.lang.String | getName()
return name;
| public int | getSlot()
return slot;
| public java.lang.String | getType()
return type;
| public void | print()
Log.LOGN(5, "Name: " + name + "\nClass: " + type);
Log.LOGN(5, "CodeIndex: " + codeIndex + "\nLength: " + length);
Log.LOGN(5, "Slot: " + slot);
|
|