Class RemappingSignatureAdapter

    • Field Detail

      • remapper

        private final Remapper remapper
        Deprecated.
      • className

        private java.lang.String className
        Deprecated.
    • Constructor Detail

      • RemappingSignatureAdapter

        public RemappingSignatureAdapter​(SignatureVisitor signatureVisitor,
                                         Remapper remapper)
        Deprecated.
      • RemappingSignatureAdapter

        protected RemappingSignatureAdapter​(int api,
                                            SignatureVisitor signatureVisitor,
                                            Remapper remapper)
        Deprecated.
    • Method Detail

      • visitClassType

        public void visitClassType​(java.lang.String name)
        Deprecated.
        Description copied from class: SignatureVisitor
        Starts the visit of a signature corresponding to a class or interface type.
        Overrides:
        visitClassType in class SignatureVisitor
        Parameters:
        name - the internal name of the class or interface.
      • visitInnerClassType

        public void visitInnerClassType​(java.lang.String name)
        Deprecated.
        Description copied from class: SignatureVisitor
        Visits an inner class.
        Overrides:
        visitInnerClassType in class SignatureVisitor
        Parameters:
        name - the local name of the inner class in its enclosing class.
      • visitFormalTypeParameter

        public void visitFormalTypeParameter​(java.lang.String name)
        Deprecated.
        Description copied from class: SignatureVisitor
        Visits a formal type parameter.
        Overrides:
        visitFormalTypeParameter in class SignatureVisitor
        Parameters:
        name - the name of the formal parameter.
      • visitTypeVariable

        public void visitTypeVariable​(java.lang.String name)
        Deprecated.
        Description copied from class: SignatureVisitor
        Visits a signature corresponding to a type variable.
        Overrides:
        visitTypeVariable in class SignatureVisitor
        Parameters:
        name - the name of the type variable.
      • visitBaseType

        public void visitBaseType​(char descriptor)
        Deprecated.
        Description copied from class: SignatureVisitor
        Visits a signature corresponding to a primitive type.
        Overrides:
        visitBaseType in class SignatureVisitor
        Parameters:
        descriptor - the descriptor of the primitive type, or 'V' for void .
      • visitTypeArgument

        public void visitTypeArgument()
        Deprecated.
        Description copied from class: SignatureVisitor
        Visits an unbounded type argument of the last visited class or inner class type.
        Overrides:
        visitTypeArgument in class SignatureVisitor
      • visitTypeArgument

        public SignatureVisitor visitTypeArgument​(char wildcard)
        Deprecated.
        Description copied from class: SignatureVisitor
        Visits a type argument of the last visited class or inner class type.
        Overrides:
        visitTypeArgument in class SignatureVisitor
        Parameters:
        wildcard - '+', '-' or '='.
        Returns:
        a non null visitor to visit the signature of the type argument.
      • visitEnd

        public void visitEnd()
        Deprecated.
        Description copied from class: SignatureVisitor
        Ends the visit of a signature corresponding to a class or interface type.
        Overrides:
        visitEnd in class SignatureVisitor