Attributes attr = method.getAttributes();
CodeAttribute codeAttr = attr.getCode();
MethodDefRow mdr = new MethodDefRow(cf, method, true,
codeAttr != null);
if (!deprecatedAnnotationAdded && method.isDeprecated()) {
DeprecatedAnnotationDefRow ddr = new DeprecatedAnnotationDefRow();
this.rows.add(ddr);
}
this.rows.add(mdr);
this.classDef.addMethod(mdr);
LineNumberTableAttribute lnAttr = null;