📄 linenumbertableattr.java
字号:
/**
*
*/
package gen.info.attr;
import java.util.ArrayList;
import java.util.List;
/**
* usually used in CodeAttr, used to debug
*
* @author liuyi
*
*/
public class LineNumberTableAttr extends AttributeInfo {
/** line_number_table_length */
private List lineNumberTable;
/**
* @param tag
*/
public LineNumberTableAttr(int tag) {
super(tag);
lineNumberTable = new ArrayList();
}
}
class LineNumberTable {
/** the begin of code array */
private short startPc;
/** the line number of source file, and each nonblank line has one */
private short lineNumber;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -