?? attributeinfo.java
字號:
/**
*
*/
package gen.info.attr;
/**
* @author liuyi
*
*/
public abstract class AttributeInfo {
/** the type of this Attribute */
protected int tag;
/** index of constant pool, referring to a ConstantUtf8Info */
protected short nameIndex;
/** length of the attibutes */
protected int length;
public AttributeInfo(int tag) {
this.tag = tag;
}
public void setNameIndex(short nameIndex){
this.nameIndex = nameIndex;
}
public short getNameIndex(){
return nameIndex;
}
public void setLength(int length){
this.length = length;
}
public int getLength(){
return length;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -