|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--de.fub.bytecode.generic.LocalVariableGen
This class represents a local variable within a method. It contains its scope, name and type. The generated LocalVariable object can be obtained with getLocalVariable which needs the instruction list and the constant pool as parameters.
LocalVariable
,
MethodGen
Constructor Summary | |
LocalVariableGen(int index,
java.lang.String name,
Type type,
InstructionHandle start,
InstructionHandle end)
Generate a local variable that with index `index'. |
Method Summary | |
java.lang.Object |
clone()
|
boolean |
containsTarget(InstructionHandle ih)
|
boolean |
equals(java.lang.Object o)
We consider to local variables to be equal, if the use the same index and are valid in the same range. |
InstructionHandle |
getEnd()
|
int |
getIndex()
|
LocalVariable |
getLocalVariable(ConstantPoolGen cp)
Get LocalVariable object. |
java.lang.String |
getName()
|
int |
getSlot()
Deprecated. Use getIndex() |
InstructionHandle |
getStart()
|
Type |
getType()
|
void |
setEnd(InstructionHandle end)
|
void |
setIndex(int index)
|
void |
setName(java.lang.String name)
|
void |
setSlot(int index)
Deprecated. Use setIndex() |
void |
setStart(InstructionHandle start)
|
void |
setType(Type type)
|
java.lang.String |
toString()
|
void |
updateTarget(InstructionHandle old_ih,
InstructionHandle new_ih)
|
Methods inherited from class java.lang.Object |
finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
public LocalVariableGen(int index, java.lang.String name, Type type, InstructionHandle start, InstructionHandle end)
index
- index of local variablename
- its nametype
- its typestart
- from where the instruction is valid (null means from the start)end
- until where the instruction is valid (null means to the end)Method Detail |
public LocalVariable getLocalVariable(ConstantPoolGen cp)
il
- instruction list (byte code) which this variable belongs tocp
- constant poolpublic void setIndex(int index)
public int getIndex()
public void setName(java.lang.String name)
setName
in interface NamedAndTyped
public java.lang.String getName()
getName
in interface NamedAndTyped
public void setType(Type type)
setType
in interface NamedAndTyped
public Type getType()
getType
in interface NamedAndTyped
public InstructionHandle getStart()
public InstructionHandle getEnd()
public void setStart(InstructionHandle start)
public void setEnd(InstructionHandle end)
public void updateTarget(InstructionHandle old_ih, InstructionHandle new_ih)
updateTarget
in interface InstructionTargeter
old_ih
- old target, either start or endnew_ih
- new targetpublic boolean containsTarget(InstructionHandle ih)
containsTarget
in interface InstructionTargeter
public boolean equals(java.lang.Object o)
equals
in class java.lang.Object
public java.lang.String toString()
toString
in class java.lang.Object
public java.lang.Object clone()
clone
in class java.lang.Object
public void setSlot(int index)
public int getSlot()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |