org.objectweb.asm.util
public class CheckSignatureAdapter extends Object implements SignatureVisitor
Field Summary | |
---|---|
static int | CLASS_SIGNATURE
Type to be used to check class signatures. |
static int | METHOD_SIGNATURE
Type to be used to check method signatures. |
static int | TYPE_SIGNATURE
Type to be used to check type signatures.See
{@link #CheckSignatureAdapter(int, SignatureVisitor) CheckSignatureAdapter}. |
Constructor Summary | |
---|---|
CheckSignatureAdapter(int type, SignatureVisitor sv)
Creates a new {@link CheckSignatureAdapter} object.
|
Method Summary | |
---|---|
SignatureVisitor | visitArrayType() |
void | visitBaseType(char descriptor) |
SignatureVisitor | visitClassBound() |
void | visitClassType(String name) |
void | visitEnd() |
SignatureVisitor | visitExceptionType() |
void | visitFormalTypeParameter(String name) |
void | visitInnerClassType(String name) |
SignatureVisitor | visitInterface() |
SignatureVisitor | visitInterfaceBound() |
SignatureVisitor | visitParameterType() |
SignatureVisitor | visitReturnType() |
SignatureVisitor | visitSuperclass() |
void | visitTypeArgument() |
SignatureVisitor | visitTypeArgument(char wildcard) |
void | visitTypeVariable(String name) |
Parameters: type the type of signature to be checked. See {@link #CLASS_SIGNATURE}, {@link #METHOD_SIGNATURE} and {@link #TYPE_SIGNATURE}. sv the visitor to which this adapter must delegate calls. May be null.