Lines Matching refs:methodDiff
564 MemberDiff methodDiff = new MemberDiff(oldMethod.name_);
567 methodDiff.oldType_ = oldMethod.returnType_;
568 methodDiff.newType_ = newMethod.returnType_;
575 methodDiff.oldSignature_ = oldSig;
576 methodDiff.newSignature_ = newSig;
585 methodDiff.addModifiersChange("Method was locally defined, but is now inherited from " + linkToClass(newMethod, true) + ".");
586 methodDiff.inheritedFrom_ = newMethod.inheritedFrom_;
588 methodDiff.addModifiersChange("Method was inherited from " + linkToClass(oldMethod, false) + ", but is now defined locally.");
590 methodDiff.addModifiersChange("Method was inherited from " +
592 methodDiff.inheritedFrom_ = newMethod.inheritedFrom_;
601 methodDiff.addModifiersChange(changeText);
612 methodDiff.addModifiersChange(changeText);
623 methodDiff.addModifiersChange(changeText);
628 methodDiff.oldExceptions_ = oldMethod.exceptions_;
629 methodDiff.newExceptions_ = newMethod.exceptions_;
636 String sig = methodDiff.newSignature_;
644 link2 + HTMLReportGenerator.simpleName(methodDiff.newType_) + " <b>" + newMethod.name_ + "(" + HTMLReportGenerator.simpleName(sig) + ")</b></a>";
645 methodDiff.documentationChange_ = Diff.saveDocDiffs(pkgDiff.name_, classDiff.name_, oldMethod.doc_, newMethod.doc_, id, title);
658 methodDiff.addModifiersChange(modifiersChange);
667 if (methodDiff.modifiersChange_ != null)
668 System.out.println(" Modifier change: " + methodDiff.modifiersChange_);
670 classDiff.methodsChanged.add(methodDiff);