LocalVariable |
LocalVariableTable.addLocalVariable() |
Add a local to this table.
|
LocalVariable |
LocalVariableTable.addLocalVariable(java.lang.String name,
java.lang.Class type) |
Add a local to this table.
|
LocalVariable |
LocalVariableTable.addLocalVariable(java.lang.String name,
java.lang.String type) |
Add a local to this table.
|
LocalVariable |
LocalVariableTable.addLocalVariable(java.lang.String name,
BCClass type) |
Add a local to this table.
|
LocalVariable |
LocalVariableTable.addLocalVariable(LocalVariable local) |
Import a local from another method/class.
|
LocalVariable |
LocalVariableInstruction.getLocalVariable() |
Return the local variable object this instruction
operates on, or null if none.
|
LocalVariable |
LocalVariableTable.getLocalVariable(int local) |
Return the local with the given locals index, or null if none.
|
LocalVariable |
LocalVariableTable.getLocalVariable(java.lang.String name) |
Return the local with the given name, or null if none.
|
LocalVariable[] |
LocalVariableTable.getLocalVariables() |
Return all the locals of this method.
|
LocalVariable[] |
LocalVariableTable.getLocalVariables(java.lang.String name) |
Return all locals with the given name, or empty array if none.
|