|
||||||||||
| 上一个类 下一个类 | 框架 无框架 | |||||||||
| 摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 | |||||||||
java.lang.Objectorg.objectweb.asm.tree.MemberNode
org.objectweb.asm.tree.FieldNode
public class FieldNode
A node that represents a field.
| 字段摘要 | |
|---|---|
int |
access
The field's access flags (see Opcodes). |
String |
desc
The field's descriptor (see Type). |
String |
name
The field's name. |
String |
signature
The field's signature. |
Object |
value
The field's initial value. |
| 从类 org.objectweb.asm.tree.MemberNode 继承的字段 |
|---|
attrs, invisibleAnnotations, visibleAnnotations |
| 构造方法摘要 | |
|---|---|
FieldNode(int access,
String name,
String desc,
String signature,
Object value)
Constructs a new FieldNode. |
|
| 方法摘要 | |
|---|---|
void |
accept(ClassVisitor cv)
Makes the given class visitor visit this field. |
| 从类 org.objectweb.asm.tree.MemberNode 继承的方法 |
|---|
visitAnnotation, visitAttribute, visitEnd |
| 从类 java.lang.Object 继承的方法 |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| 从接口 org.objectweb.asm.FieldVisitor 继承的方法 |
|---|
visitAnnotation, visitAttribute, visitEnd |
| 字段详细信息 |
|---|
public int access
Opcodes). This
field also indicates if the field is synthetic and/or deprecated.
public String name
public String desc
Type).
public String signature
public Object value
Integer, a
Float, a Long, a Double or a String.
| 构造方法详细信息 |
|---|
public FieldNode(int access,
String name,
String desc,
String signature,
Object value)
FieldNode.
access - the field's access flags (see
Opcodes). This parameter also indicates
if the field is synthetic and/or deprecated.name - the field's name.desc - the field's descriptor (see
Type).signature - the field's signature.value - the field's initial value. This parameter, which may be
null if the field does not have an initial value, must
be an Integer, a Float, a Long, a
Double or a String.| 方法详细信息 |
|---|
public void accept(ClassVisitor cv)
cv - a class visitor.
|
||||||||||
| 上一个类 下一个类 | 框架 无框架 | |||||||||
| 摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 | |||||||||