Uses of Class
org.objectweb.asm.signature.SignatureVisitor
-
Packages that use SignatureVisitor Package Description org.objectweb.asm.commons Provides some useful class and method adapters.org.objectweb.asm.signature Provides support for type signatures.org.objectweb.asm.util Provides ASM visitors that can be useful for programming and debugging purposes. -
-
Uses of SignatureVisitor in org.objectweb.asm.commons
Subclasses of SignatureVisitor in org.objectweb.asm.commons Modifier and Type Class Description classRemappingSignatureAdapterDeprecated.useSignatureRemapperinstead.classSignatureRemapperASignatureVisitoradapter for type mapping.Methods in org.objectweb.asm.commons with parameters of type SignatureVisitor Modifier and Type Method Description protected SignatureVisitorRemapper. createRemappingSignatureAdapter(SignatureVisitor v)Deprecated.protected SignatureVisitorRemapper. createSignatureRemapper(SignatureVisitor v)Constructors in org.objectweb.asm.commons with parameters of type SignatureVisitor Constructor Description RemappingSignatureAdapter(int api, SignatureVisitor v, Remapper remapper)Deprecated.RemappingSignatureAdapter(SignatureVisitor v, Remapper remapper)Deprecated.SignatureRemapper(int api, SignatureVisitor v, Remapper remapper)SignatureRemapper(SignatureVisitor v, Remapper remapper) -
Uses of SignatureVisitor in org.objectweb.asm.signature
Subclasses of SignatureVisitor in org.objectweb.asm.signature Modifier and Type Class Description classSignatureWriterA signature visitor that generates signatures in string format.Methods in org.objectweb.asm.signature that return SignatureVisitor Modifier and Type Method Description SignatureVisitorSignatureVisitor. visitArrayType()Visits a signature corresponding to an array type.SignatureVisitorSignatureWriter. visitArrayType()SignatureVisitorSignatureVisitor. visitClassBound()Visits the class bound of the last visited formal type parameter.SignatureVisitorSignatureWriter. visitClassBound()SignatureVisitorSignatureVisitor. visitExceptionType()Visits the type of a method exception.SignatureVisitorSignatureWriter. visitExceptionType()SignatureVisitorSignatureVisitor. visitInterface()Visits the type of an interface implemented by the class.SignatureVisitorSignatureWriter. visitInterface()SignatureVisitorSignatureVisitor. visitInterfaceBound()Visits an interface bound of the last visited formal type parameter.SignatureVisitorSignatureWriter. visitInterfaceBound()SignatureVisitorSignatureVisitor. visitParameterType()Visits the type of a method parameter.SignatureVisitorSignatureWriter. visitParameterType()SignatureVisitorSignatureVisitor. visitReturnType()Visits the return type of the method.SignatureVisitorSignatureWriter. visitReturnType()SignatureVisitorSignatureVisitor. visitSuperclass()Visits the type of the super class.SignatureVisitorSignatureWriter. visitSuperclass()SignatureVisitorSignatureVisitor. visitTypeArgument(char wildcard)Visits a type argument of the last visited class or inner class type.SignatureVisitorSignatureWriter. visitTypeArgument(char wildcard)Methods in org.objectweb.asm.signature with parameters of type SignatureVisitor Modifier and Type Method Description voidSignatureReader. accept(SignatureVisitor v)Makes the given visitor visit the signature of thisSignatureReader.voidSignatureReader. acceptType(SignatureVisitor v)Makes the given visitor visit the signature of thisSignatureReader. -
Uses of SignatureVisitor in org.objectweb.asm.util
Subclasses of SignatureVisitor in org.objectweb.asm.util Modifier and Type Class Description classCheckSignatureAdapterASignatureVisitorthat checks that its methods are properly used.classTraceSignatureVisitorASignatureVisitorthat prints a disassembled view of the signature it visits.Constructors in org.objectweb.asm.util with parameters of type SignatureVisitor Constructor Description CheckSignatureAdapter(int api, int type, SignatureVisitor sv)Creates a newCheckSignatureAdapterobject.CheckSignatureAdapter(int type, SignatureVisitor sv)Creates a newCheckSignatureAdapterobject.
-