Java Code Examples for org.apache.bcel.Const#ATTR_LOCAL_VARIABLE_TABLE

The following examples show how to use org.apache.bcel.Const#ATTR_LOCAL_VARIABLE_TABLE . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: LocalVariableTable.java    From commons-bcel with Apache License 2.0 2 votes vote down vote up
/**
 * @param nameIndex Index in constant pool to `LocalVariableTable'
 * @param length Content length in bytes
 * @param localVariableTable Table of local variables
 * @param constantPool Array of constants
 */
public LocalVariableTable(final int nameIndex, final int length, final LocalVariable[] localVariableTable,
        final ConstantPool constantPool) {
    super(Const.ATTR_LOCAL_VARIABLE_TABLE, nameIndex, length, constantPool);
    this.localVariableTable = localVariableTable;
}