syntheticattr.java
来自「本人根据自己的实际情况」· Java 代码 · 共 26 行
JAVA
26 行
/**
*
*/
package gen.info.attr;
/**
* Synthetic used in fieldInfo and methodInfo
* a variable must use this remark if it doesn't appeared in source code
*
* @author liuyi
*
*/
public class SyntheticAttr extends AttributeInfo {
/**
* @param tag
*/
public SyntheticAttr(int tag) {
super(tag);
// must be 0
length = 0;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?