Class FieldDump


  • public class FieldDump
    extends org.objectweb.asm.FieldVisitor
    Создание дампа поля класса
    • Constructor Detail

      • FieldDump

        public FieldDump​(int api)
        Constructs a new FieldVisitor.
        Parameters:
        api - the ASM API version implemented by this visitor. Must be one of Opcodes.ASM4, Opcodes.ASM5, Opcodes.ASM6, Opcodes.ASM7, Opcodes.ASM8 or Opcodes.ASM9.
      • FieldDump

        public FieldDump​(int api,
                         org.objectweb.asm.FieldVisitor fieldVisitor)
        Constructs a new FieldVisitor.
        Parameters:
        api - the ASM API version implemented by this visitor. Must be one of Opcodes.ASM4, Opcodes.ASM5, Opcodes.ASM6, Opcodes.ASM7 or Opcodes.ASM8.
        fieldVisitor - the field visitor to which this visitor must delegate method calls. May be
    • Method Detail

      • byteCode

        public FieldDump byteCode​(Consumer<? super ByteCode> bc)
        Указывает функцию принимающую байт код
        Parameters:
        bc - функция приема байт кода
        Returns:
        SELF ссылка
      • visitAnnotation

        public org.objectweb.asm.AnnotationVisitor visitAnnotation​(String descriptor,
                                                                   boolean visible)
        Visits an annotation of the field.
        Overrides:
        visitAnnotation in class org.objectweb.asm.FieldVisitor
        Parameters:
        descriptor - the class descriptor of the annotation class.
        visible - true if the annotation is visible at runtime.
        Returns:
        a visitor to visit the annotation values, or null if this visitor is not interested in visiting this annotation.
      • visitTypeAnnotation

        public org.objectweb.asm.AnnotationVisitor visitTypeAnnotation​(int typeRef,
                                                                       org.objectweb.asm.TypePath typePath,
                                                                       String descriptor,
                                                                       boolean visible)
        Visits an annotation on the type of the field.
        Overrides:
        visitTypeAnnotation in class org.objectweb.asm.FieldVisitor
        Parameters:
        typeRef - a reference to the annotated type. The sort of this type reference must be TypeReference.FIELD. See TypeReference.
        typePath - the path to the annotated type argument, wildcard bound, array element type, or static inner type within 'typeRef'. May be null if the annotation targets 'typeRef' as a whole.
        descriptor - the class descriptor of the annotation class.
        visible - true if the annotation is visible at runtime.
        Returns:
        a visitor to visit the annotation values, or null if this visitor is not interested in visiting this annotation.
      • visitAttribute

        public void visitAttribute​(org.objectweb.asm.Attribute attribute)
        Visits a non standard attribute of the field.
        Overrides:
        visitAttribute in class org.objectweb.asm.FieldVisitor
        Parameters:
        attribute - an attribute.
      • visitEnd

        public void visitEnd()
        Visits the end of the field. This method, which is the last one to be called, is used to inform the visitor that all the annotations and attributes of the field have been visited.
        Overrides:
        visitEnd in class org.objectweb.asm.FieldVisitor