Package org.objectweb.asm.commons
Class RemappingSignatureAdapter
- java.lang.Object
-
- org.objectweb.asm.signature.SignatureVisitor
-
- org.objectweb.asm.commons.RemappingSignatureAdapter
-
@Deprecated public class RemappingSignatureAdapter extends SignatureVisitor
Deprecated.useSignatureRemapperinstead.ASignatureVisitoradapter for type mapping.
-
-
Field Summary
-
Fields inherited from class org.objectweb.asm.signature.SignatureVisitor
api, EXTENDS, INSTANCEOF, SUPER
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedRemappingSignatureAdapter(int api, SignatureVisitor signatureVisitor, Remapper remapper)Deprecated.RemappingSignatureAdapter(SignatureVisitor signatureVisitor, Remapper remapper)Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description SignatureVisitorvisitArrayType()Deprecated.Visits a signature corresponding to an array type.voidvisitBaseType(char descriptor)Deprecated.Visits a signature corresponding to a primitive type.SignatureVisitorvisitClassBound()Deprecated.Visits the class bound of the last visited formal type parameter.voidvisitClassType(String name)Deprecated.Starts the visit of a signature corresponding to a class or interface type.voidvisitEnd()Deprecated.Ends the visit of a signature corresponding to a class or interface type.SignatureVisitorvisitExceptionType()Deprecated.Visits the type of a method exception.voidvisitFormalTypeParameter(String name)Deprecated.Visits a formal type parameter.voidvisitInnerClassType(String name)Deprecated.Visits an inner class.SignatureVisitorvisitInterface()Deprecated.Visits the type of an interface implemented by the class.SignatureVisitorvisitInterfaceBound()Deprecated.Visits an interface bound of the last visited formal type parameter.SignatureVisitorvisitParameterType()Deprecated.Visits the type of a method parameter.SignatureVisitorvisitReturnType()Deprecated.Visits the return type of the method.SignatureVisitorvisitSuperclass()Deprecated.Visits the type of the super class.voidvisitTypeArgument()Deprecated.Visits an unbounded type argument of the last visited class or inner class type.SignatureVisitorvisitTypeArgument(char wildcard)Deprecated.Visits a type argument of the last visited class or inner class type.voidvisitTypeVariable(String name)Deprecated.Visits a signature corresponding to a type variable.
-
-
-
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(String name)
Deprecated.Description copied from class:SignatureVisitorStarts the visit of a signature corresponding to a class or interface type.- Overrides:
visitClassTypein classSignatureVisitor- Parameters:
name- the internal name of the class or interface.
-
visitInnerClassType
public void visitInnerClassType(String name)
Deprecated.Description copied from class:SignatureVisitorVisits an inner class.- Overrides:
visitInnerClassTypein classSignatureVisitor- Parameters:
name- the local name of the inner class in its enclosing class.
-
visitFormalTypeParameter
public void visitFormalTypeParameter(String name)
Deprecated.Description copied from class:SignatureVisitorVisits a formal type parameter.- Overrides:
visitFormalTypeParameterin classSignatureVisitor- Parameters:
name- the name of the formal parameter.
-
visitTypeVariable
public void visitTypeVariable(String name)
Deprecated.Description copied from class:SignatureVisitorVisits a signature corresponding to a type variable.- Overrides:
visitTypeVariablein classSignatureVisitor- Parameters:
name- the name of the type variable.
-
visitArrayType
public SignatureVisitor visitArrayType()
Deprecated.Description copied from class:SignatureVisitorVisits a signature corresponding to an array type.- Overrides:
visitArrayTypein classSignatureVisitor- Returns:
- a non null visitor to visit the signature of the array element type.
-
visitBaseType
public void visitBaseType(char descriptor)
Deprecated.Description copied from class:SignatureVisitorVisits a signature corresponding to a primitive type.- Overrides:
visitBaseTypein classSignatureVisitor- Parameters:
descriptor- the descriptor of the primitive type, or 'V' forvoid.
-
visitClassBound
public SignatureVisitor visitClassBound()
Deprecated.Description copied from class:SignatureVisitorVisits the class bound of the last visited formal type parameter.- Overrides:
visitClassBoundin classSignatureVisitor- Returns:
- a non null visitor to visit the signature of the class bound.
-
visitExceptionType
public SignatureVisitor visitExceptionType()
Deprecated.Description copied from class:SignatureVisitorVisits the type of a method exception.- Overrides:
visitExceptionTypein classSignatureVisitor- Returns:
- a non null visitor to visit the signature of the exception type.
-
visitInterface
public SignatureVisitor visitInterface()
Deprecated.Description copied from class:SignatureVisitorVisits the type of an interface implemented by the class.- Overrides:
visitInterfacein classSignatureVisitor- Returns:
- a non null visitor to visit the signature of the interface type.
-
visitInterfaceBound
public SignatureVisitor visitInterfaceBound()
Deprecated.Description copied from class:SignatureVisitorVisits an interface bound of the last visited formal type parameter.- Overrides:
visitInterfaceBoundin classSignatureVisitor- Returns:
- a non null visitor to visit the signature of the interface bound.
-
visitParameterType
public SignatureVisitor visitParameterType()
Deprecated.Description copied from class:SignatureVisitorVisits the type of a method parameter.- Overrides:
visitParameterTypein classSignatureVisitor- Returns:
- a non null visitor to visit the signature of the parameter type.
-
visitReturnType
public SignatureVisitor visitReturnType()
Deprecated.Description copied from class:SignatureVisitorVisits the return type of the method.- Overrides:
visitReturnTypein classSignatureVisitor- Returns:
- a non null visitor to visit the signature of the return type.
-
visitSuperclass
public SignatureVisitor visitSuperclass()
Deprecated.Description copied from class:SignatureVisitorVisits the type of the super class.- Overrides:
visitSuperclassin classSignatureVisitor- Returns:
- a non null visitor to visit the signature of the super class type.
-
visitTypeArgument
public void visitTypeArgument()
Deprecated.Description copied from class:SignatureVisitorVisits an unbounded type argument of the last visited class or inner class type.- Overrides:
visitTypeArgumentin classSignatureVisitor
-
visitTypeArgument
public SignatureVisitor visitTypeArgument(char wildcard)
Deprecated.Description copied from class:SignatureVisitorVisits a type argument of the last visited class or inner class type.- Overrides:
visitTypeArgumentin classSignatureVisitor- 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:SignatureVisitorEnds the visit of a signature corresponding to a class or interface type.- Overrides:
visitEndin classSignatureVisitor
-
-