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

The following examples show how to use org.apache.bcel.Const#ATTR_LINE_NUMBER_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: LineNumberTable.java    From commons-bcel with Apache License 2.0 4 votes vote down vote up
public LineNumberTable(final int name_index, final int length, final LineNumber[] line_number_table,
        final ConstantPool constant_pool) {
    super(Const.ATTR_LINE_NUMBER_TABLE, name_index, length, constant_pool);
    this.lineNumberTable = line_number_table;
}