| Prev Class | Next Class | Frames | No Frames |
| Summary: Nested | Field | Method | Constr | Detail: Nested | Field | Method | Constr |
java.lang.Objectorg.objectweb.asm.signature.SignatureReaderpublic class SignatureReaderextends ObjectConstructor Summary | |
| |
Method Summary | |
void |
|
void |
|
public SignatureReader(String signature)
Constructs aSignatureReaderfor the given signature.
- Parameters:
signature- A ClassSignature, MethodTypeSignature, or FieldTypeSignature.
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 aSignatureReaderthat was created using a ClassSignature (such as thesignatureparameter of theClassVisitor.visitmethod) or a MethodTypeSignature (such as thesignatureparameter of theClassVisitor.visitMethodmethod).
- Parameters:
v- the visitor that must visit this signature.
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 aSignatureReaderthat was created using a FieldTypeSignature, such as thesignatureparameter of theClassVisitor.visitFieldorMethodVisitor.visitLocalVariablemethods.
- Parameters:
v- the visitor that must visit this signature.