Class SignatureRemapper

java.lang.Object
org.objectweb.asm.signature.SignatureVisitor
org.objectweb.asm.commons.SignatureRemapper

public class SignatureRemapper extends SignatureVisitor
A SignatureVisitor that remaps types with a Remapper.
  • Field Details

  • Constructor Details

    • SignatureRemapper

      public SignatureRemapper(SignatureVisitor signatureVisitor, Remapper remapper)
      Constructs a new SignatureRemapper. Subclasses must not use this constructor. Instead, they must use the SignatureRemapper(int,SignatureVisitor,Remapper) version.
      Parameters:
      signatureVisitor - the signature visitor this remapper must delegate to.
      remapper - the remapper to use to remap the types in the visited signature.
    • SignatureRemapper

      protected SignatureRemapper(int api, SignatureVisitor signatureVisitor, Remapper remapper)
      Constructs a new SignatureRemapper.
      Parameters:
      api - the ASM API version supported by this remapper. Must be one of the ASMx values in Opcodes.
      signatureVisitor - the signature visitor this remapper must delegate to.
      remapper - the remapper to use to remap the types in the visited signature.
  • Method Details