org.objectweb.asm.signature

Class SignatureReader


public class SignatureReader
extends Object

A type signature parser to make a signature visitor visit an existing signature.

Authors:
Thomas Hallgren
Eric Bruneton

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.

Constructor Details

SignatureReader

public SignatureReader(String signature)
Constructs a SignatureReader for the given signature.

Parameters:
signature - A ClassSignature, MethodTypeSignature, or FieldTypeSignature.

Method Details

accept

public void accept(SignatureVisitor v)
Makes the given visitor visit the signature of this SignatureReader. This signature is the one specified in the constructor (see 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.


acceptType

public void acceptType(SignatureVisitor v)
Makes the given visitor visit the signature of this SignatureReader. This signature is the one specified in the constructor (see 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.