Class BytecodeField


  • public final class BytecodeField
    extends Object
    Bytecode field.
    Since:
    0.2
    • Constructor Detail

      • BytecodeField

        public BytecodeField​(String name,
                             String descr,
                             String signature,
                             Object value,
                             int access)
        Constructor.
        Parameters:
        name - Name.
        descr - Descriptor.
        signature - Signature.
        value - Value.
        access - Access.
        Suppressed Checkstyle violations:
        ParameterNumberCheck (5 lines)
      • 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.
        Suppressed Checkstyle violations:
        ParameterNumberCheck (5 lines)
    • Method Detail

      • write

        public void write​(org.objectweb.asm.ClassVisitor visitor)
        Write field to a class.
        Parameters:
        visitor - Visitor.