?? 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 + -