Class BytecodeField
java.lang.Object
org.eolang.jeo.representation.bytecode.BytecodeField
Bytecode field.
- Since:
- 0.2
-
Constructor Summary
ConstructorsConstructorDescriptionBytecodeField(String name, String descr, String signature, Object value, int access) Constructor.BytecodeField(String name, String descriptor, String signature, Object value, int access, BytecodeAnnotations annotations) Constructor. -
Method Summary
Modifier and TypeMethodDescriptiondirectives(Format format) voidwrite(org.objectweb.asm.ClassVisitor visitor) Write field to a class.
-
Constructor Details
-
BytecodeField
Constructor.- Parameters:
name- Name.descr- Descriptor.signature- Signature.value- Value.access- Access.
-
BytecodeField
public BytecodeField(String name, String descriptor, String signature, Object value, int access, BytecodeAnnotations annotations) Constructor.- Parameters:
name- Name.descriptor- Descriptor.signature- Signature.value- Value.access- Access.annotations- Annotations.
-
-
Method Details
-
write
public void write(org.objectweb.asm.ClassVisitor visitor) Write field to a class.- Parameters:
visitor- Visitor.
-
directives
-