{
protected Attribute read (ClassReader cr, int off,
int len, char[] buf, int codeOff, Label[] labels)
{
SignatureAttribute attr =
(SignatureAttribute)super.read(cr, off, len, buf, codeOff, labels);
ASMSignatureAttribute result = new ASMSignatureAttribute();
result.signature = attr.signature;
return result;