@@ -493,7 +493,8 @@ private String renderClassEdgeDisharmonies(
493493 .append ("<br>\n " );
494494 stringBuilder
495495 .append ("Classes with <strong>*</strong> should be broken apart" )
496- .append ("<br>\n " );
496+ .append ("<br>\n " )
497+ .append ("Removing class relationships below will eliminate class cycles" );
497498 stringBuilder .append ("</div>\n " );
498499
499500 // Content
@@ -542,8 +543,9 @@ private String renderPackageEdgeDisharmonies(
542543 .append (packageRelationshipsToRemove .size ())
543544 .append ("<br>\n " );
544545 stringBuilder
545- .append ("Packages with <strong>*</strong> should be broken apart" )
546- .append ("<br>\n " );
546+ .append ("Packages and classes with <strong>*</strong> should be broken apart" )
547+ .append ("<br>\n " )
548+ .append ("Removing package relationships below will eliminate package cycles" );
547549 stringBuilder .append ("</div>\n " );
548550
549551 // Content
@@ -576,18 +578,22 @@ private String renderPackageEdgeDisharmonies(
576578
577579 private String [] getClassRelationshipDisharmonyTableHeadings () {
578580 return new String [] {
579- "Relationship" ,
581+ "Class Relationship" ,
580582 "Priority" ,
581583 "In Class<br>Cycles" ,
582584 "Relationship<br>Strength" ,
583- "Also Remove <br>Package Relationship" ,
585+ "Also Removes Pkg <br>Cycle Relationship" ,
584586 "In Package<br>Cycles" ,
585587 };
586588 }
587589
588590 private String [] getPackageRelationshipDisharmonyTableHeadings () {
589591 return new String [] {
590- "Package Relationship" , "Priority" , "In Cycles" , "Edge<br>Weight" , "Class Relationships" ,
592+ "Package Relationship" ,
593+ "Priority" ,
594+ "In Pkg<br>Cycles" ,
595+ "Relationship<br>Strength" ,
596+ "Class Relationships to Remove<br>To Break Package Relationship" ,
591597 };
592598 }
593599
0 commit comments