Class LocalVariableSet
- java.lang.Object
-
- org.jd.core.v1.service.converter.classfiletojavasyntax.model.localvariable.LocalVariableSet
-
public class LocalVariableSet extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description protected AbstractLocalVariable[]
array
protected int
size
-
Constructor Summary
Constructors Constructor Description LocalVariableSet()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
add(int index, AbstractLocalVariable newLV)
AbstractLocalVariable
get(int index, int offset)
AbstractLocalVariable[]
initialize(Frame rootFrame)
boolean
isEmpty()
AbstractLocalVariable
remove(int index, int offset)
AbstractLocalVariable
root(int index)
void
update(int index, int offset, GenericType type)
void
update(int index, int offset, ObjectType type)
-
-
-
Field Detail
-
array
protected AbstractLocalVariable[] array
-
size
protected int size
-
-
Method Detail
-
add
public void add(int index, AbstractLocalVariable newLV)
-
root
public AbstractLocalVariable root(int index)
-
remove
public AbstractLocalVariable remove(int index, int offset)
-
get
public AbstractLocalVariable get(int index, int offset)
-
isEmpty
public boolean isEmpty()
-
update
public void update(int index, int offset, ObjectType type)
-
update
public void update(int index, int offset, GenericType type)
-
initialize
public AbstractLocalVariable[] initialize(Frame rootFrame)
-
-