|
||||||||||
| 上一个类 下一个类 | 框架 无框架 | |||||||||
| 摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 | |||||||||
java.lang.Objectorg.objectweb.asm.signature.SignatureReader
public class SignatureReader
A type signature parser to make a signature visitor visit an existing signature.
| 构造方法摘要 | |
|---|---|
SignatureReader(String signature)
Constructs a SignatureReader for the given signature. |
|
| 方法摘要 | |
|---|---|
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. |
| 从类 java.lang.Object 继承的方法 |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| 构造方法详细信息 |
|---|
public SignatureReader(String signature)
SignatureReader for the given signature.
signature - A ClassSignature, MethodTypeSignature,
or FieldTypeSignature.| 方法详细信息 |
|---|
public void accept(SignatureVisitor v)
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).
v - the visitor that must visit this signature.public void acceptType(SignatureVisitor v)
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.
v - the visitor that must visit this signature.
|
||||||||||
| 上一个类 下一个类 | 框架 无框架 | |||||||||
| 摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 | |||||||||