org.objectweb.asm.signature
public class SignatureReader extends Object
Constructor Summary | |
---|---|
SignatureReader(String signature)
Constructs a {@link SignatureReader} for the given signature.
|
Method Summary | |
---|---|
void | accept(SignatureVisitor v)
Makes the given visitor visit the signature of this
{@link SignatureReader}. |
void | acceptType(SignatureVisitor v)
Makes the given visitor visit the signature of this
{@link SignatureReader}. |
Parameters: signature A ClassSignature, MethodTypeSignature, or FieldTypeSignature.
signature
parameter of the
{@link org.objectweb.asm.ClassVisitor#visit ClassVisitor.visit} method)
or a MethodTypeSignature (such as the signature
parameter of the
{@link org.objectweb.asm.ClassVisitor#visitMethod ClassVisitor.visitMethod}
method).
Parameters: v the visitor that must visit this signature.
signature
parameter of the
{@link org.objectweb.asm.ClassVisitor#visitField
ClassVisitor.visitField} or {@link
org.objectweb.asm.MethodVisitor#visitLocalVariable
MethodVisitor.visitLocalVariable} methods.
Parameters: v the visitor that must visit this signature.