org.objectweb.asm.signature
public class SignatureReader extends Object
Constructor Summary | |
---|---|
SignatureReader(String signature)
Constructs a SignatureReader for the given signature.
|
Method Summary | |
---|---|
void | accept(SignatureVisitor v)
Makes the given visitor visit the signature of this
SignatureReader. |
void | acceptType(SignatureVisitor v)
Makes the given visitor visit the signature of this
SignatureReader. |
Parameters: signature A ClassSignature, MethodTypeSignature, or FieldTypeSignature.
SignatureReader
). This
method is intended to be called on a SignatureReader that was
created using a ClassSignature (such as the
signature
parameter of the
ClassVisitor.visit
method)
or a MethodTypeSignature (such as the signature
parameter of the
ClassVisitor.visitMethod
method).
Parameters: v the visitor that must visit this signature.
SignatureReader
). This
method is intended to be called on a SignatureReader that was
created using a FieldTypeSignature, such as the
signature
parameter of the
ClassVisitor.visitField
or MethodVisitor.visitLocalVariable
methods.
Parameters: v the visitor that must visit this signature.