Package io.ran

Class AutoMapperClassWriter

java.lang.Object
org.objectweb.asm.ClassVisitor
org.objectweb.asm.ClassWriter
io.ran.AutoMapperClassWriter
Direct Known Subclasses:
AutoWrapperWriter, MappingClassWriter, QueryClassWriter

public class AutoMapperClassWriter extends org.objectweb.asm.ClassWriter
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    protected String
     
    protected String
     
    protected String
     
    protected Class<?>
     
    protected Clazz<?>
     

    Fields inherited from class org.objectweb.asm.ClassWriter

    COMPUTE_FRAMES, COMPUTE_MAXS

    Fields inherited from class org.objectweb.asm.ClassVisitor

    api, cv
  • Constructor Summary

    Constructors
    Constructor
    Description
     
    AutoMapperClassWriter(Class<?> wrapperClass)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    addAnnotation(Clazz<?> annotation, boolean visibleAtRuntime)
     
    void
    field(Access access, String name, Clazz<?> type, Object value)
     
     
    protected Clazz<?>
     
     
    method(Access access, MethodSignature signature)
     

    Methods inherited from class org.objectweb.asm.ClassWriter

    getClassLoader, getCommonSuperClass, hasFlags, newClass, newConst, newConstantDynamic, newField, newHandle, newHandle, newInvokeDynamic, newMethod, newMethodType, newModule, newNameType, newPackage, newUTF8, setFlags, toByteArray, visit, visitAnnotation, visitAttribute, visitEnd, visitField, visitInnerClass, visitMethod, visitModule, visitNestHost, visitNestMember, visitOuterClass, visitPermittedSubclass, visitRecordComponent, visitSource, visitTypeAnnotation

    Methods inherited from class org.objectweb.asm.ClassVisitor

    getDelegate

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • name

      protected String name
    • shortName

      protected String shortName
    • wrapperClass

      protected Class<?> wrapperClass
    • wrapperClazz

      protected Clazz<?> wrapperClazz
    • postFix

      protected String postFix
  • Constructor Details

    • AutoMapperClassWriter

      public AutoMapperClassWriter(Class<?> wrapperClass)
    • AutoMapperClassWriter

      public AutoMapperClassWriter()
  • Method Details