⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 attributeinfo.java

📁 本人根据自己的实际情况
💻 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 + -