|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--soot.jimple.toolkits.scalar.LocalCreation
provides an easy interface to handle new var-names. New names are automaticly added to the chain, and the provided locals are guaranteed to have a unique name.
Field Summary | |
static java.lang.String |
DEFAULT_PREFIX
if no prefix is given, this one's used |
Constructor Summary | |
LocalCreation(Chain locals)
all actions are done on the given locals-chain. |
|
LocalCreation(Chain locals,
java.lang.String prefix)
whenever newLocal(type) will be called, the given prefix is
used. |
Method Summary | |
Local |
newLocal(java.lang.String prefix,
Type type)
returns a new local with the given prefix and the given type. the returned local will automaticly added to the locals-chain. |
Local |
newLocal(Type type)
returns a new local with the prefix given to the constructor (or the default-prefix if none has been given) and the given type. The returned local will automaticly added to the locals-chain. The local will be of the form: prefixX (where the last X is a number, so the localname is unique). |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
public static java.lang.String DEFAULT_PREFIX
Constructor Detail |
public LocalCreation(Chain locals)
DEFAULT-PREFIX
will be used.
public LocalCreation(Chain locals, java.lang.String prefix)
newLocal(type)
will be called, the given prefix is
used.
Method Detail |
public Local newLocal(Type type)
type
- the Type of the new local.
public Local newLocal(java.lang.String prefix, Type type)
prefix
- the prefix for the now local.type
- the Type of the now local.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |