Package | Description |
---|---|
org.apache.bcel.classfile |
This package contains the classes that describe the structure of a
Java class file and a class file parser.
|
org.apache.bcel.generic |
This package contains the "generic" part of the
Byte Code Engineering
Library, i.e., classes to dynamically modify class objects and
byte code instructions.
|
org.apache.bcel.verifier.statics |
Provides PassVerifier classes used internally by JustIce.
|
Modifier and Type | Method and Description |
---|---|
LocalVariable |
LocalVariable.copy() |
LocalVariable |
LocalVariableTable.getLocalVariable(int index)
Deprecated.
since 5.2 because multiple variables can share the
same slot, use getLocalVariable(int index, int pc) instead.
|
LocalVariable |
LocalVariableTypeTable.getLocalVariable(int index) |
LocalVariable |
LocalVariableTable.getLocalVariable(int index,
int pc) |
LocalVariable[] |
LocalVariableTable.getLocalVariableTable() |
LocalVariable[] |
LocalVariableTypeTable.getLocalVariableTypeTable() |
Modifier and Type | Method and Description |
---|---|
void |
LocalVariableTable.setLocalVariableTable(LocalVariable[] local_variable_table) |
void |
LocalVariableTypeTable.setLocalVariableTable(LocalVariable[] local_variable_table) |
void |
DescendingVisitor.visitLocalVariable(LocalVariable var) |
void |
EmptyVisitor.visitLocalVariable(LocalVariable obj) |
void |
Visitor.visitLocalVariable(LocalVariable obj) |
Constructor and Description |
---|
LocalVariable(LocalVariable localVariable)
Initializes from another LocalVariable.
|
LocalVariableTable(int name_index,
int length,
LocalVariable[] local_variable_table,
ConstantPool constant_pool) |
LocalVariableTypeTable(int name_index,
int length,
LocalVariable[] local_variable_table,
ConstantPool constant_pool) |
Modifier and Type | Method and Description |
---|---|
LocalVariable |
LocalVariableGen.getLocalVariable(ConstantPoolGen cp)
Gets LocalVariable object.
|
Modifier and Type | Method and Description |
---|---|
void |
StringRepresentation.visitLocalVariable(LocalVariable obj) |
Copyright © 2004–2019 The Apache Software Foundation. All rights reserved.