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
CheckSignatureAdapter. |
| Constructor Summary | |
|---|---|
| CheckSignatureAdapter(int type, SignatureVisitor sv)
Creates a new 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) |
CheckSignatureAdapter. CheckSignatureAdapter. CheckSignatureAdapter.Parameters: type the type of signature to be checked. See CLASS_SIGNATURE, METHOD_SIGNATURE and TYPE_SIGNATURE. sv the visitor to which this adapter must delegate calls. May be null.