Package org.objectweb.asm.signature
Class SignatureReader
- java.lang.Object
-
- org.objectweb.asm.signature.SignatureReader
-
public class SignatureReader extends java.lang.Object
A type signature parser to make a signature visitor visit an existing signature.- Author:
- Thomas Hallgren, Eric Bruneton
-
-
Constructor Summary
Constructors Constructor Description SignatureReader(java.lang.String signature)
Constructs aSignatureReader
for the given signature.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
accept(SignatureVisitor v)
Makes the given visitor visit the signature of thisSignatureReader
.void
acceptType(SignatureVisitor v)
Makes the given visitor visit the signature of thisSignatureReader
.
-
-
-
Constructor Detail
-
SignatureReader
public SignatureReader(java.lang.String signature)
Constructs aSignatureReader
for the given signature.- Parameters:
signature
- A ClassSignature, MethodTypeSignature, or FieldTypeSignature.
-
-
Method Detail
-
accept
public void accept(SignatureVisitor v)
Makes the given visitor visit the signature of thisSignatureReader
. This signature is the one specified in the constructor (seeSignatureReader
). This method is intended to be called on aSignatureReader
that was created using a ClassSignature (such as thesignature
parameter of theClassVisitor.visit
method) or a MethodTypeSignature (such as thesignature
parameter of theClassVisitor.visitMethod
method).- Parameters:
v
- the visitor that must visit this signature.
-
acceptType
public void acceptType(SignatureVisitor v)
Makes the given visitor visit the signature of thisSignatureReader
. This signature is the one specified in the constructor (seeSignatureReader
). This method is intended to be called on aSignatureReader
that was created using a FieldTypeSignature, such as thesignature
parameter of theClassVisitor.visitField
orMethodVisitor.visitLocalVariable
methods.- Parameters:
v
- the visitor that must visit this signature.
-
-