Signature_attribute
336337338339340341342343344
nameReplaced(); classPool.classNameChanged(oldname, this); } public String getGenericSignature() { SignatureAttribute sa = (SignatureAttribute)getClassFile2().getAttribute(SignatureAttribute.tag); return sa == null ? null : sa.getSignature(); }
4849505152535455565758
{ 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;