Interface AnnotationAppender.Target

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      org.objectweb.asm.AnnotationVisitor visit​(java.lang.String annotationTypeDescriptor, boolean visible)
      Creates an annotation visitor for writing the specified annotation.
      org.objectweb.asm.AnnotationVisitor visit​(java.lang.String annotationTypeDescriptor, boolean visible, int typeReference, java.lang.String typePath)
      Creates an annotation visitor for writing the specified type annotation.
    • Method Detail

      • visit

        org.objectweb.asm.AnnotationVisitor visit​(java.lang.String annotationTypeDescriptor,
                                                  boolean visible)
        Creates an annotation visitor for writing the specified annotation.
        Parameters:
        annotationTypeDescriptor - The type descriptor for the annotation to be written.
        visible - true if the annotation is to be visible at runtime.
        Returns:
        An annotation visitor for consuming the specified annotation.
      • visit

        org.objectweb.asm.AnnotationVisitor visit​(java.lang.String annotationTypeDescriptor,
                                                  boolean visible,
                                                  int typeReference,
                                                  java.lang.String typePath)
        Creates an annotation visitor for writing the specified type annotation.
        Parameters:
        annotationTypeDescriptor - The type descriptor for the annotation to be written.
        visible - true if the annotation is to be visible at runtime.
        typeReference - The type annotation's type reference.
        typePath - The type annotation's type path.
        Returns:
        An annotation visitor for consuming the specified annotation.