I want to find in a given java project, the classes with the highest afferent coupling.

I know that the metric is available in SONAR when you

  • drill down to a class from the dashboard
  • when you also drill down package by package in the components view.

What's the best way to find this information (quickly) within SONAR ?

link|improve this question
feedback

1 Answer

If I understand what you're looking for, Sonar provides a link to the Package Tangle metric on the dashboard of a given project.

link|improve this answer
The package tangle metric is useful to cut dependencies between packages, it provides a the afferent coupling for any 2 packages you select. What I had in mind instead was getting the afferent coupling of all java classes in my project (accross all packages) so as to find those that are more used (referenced) to concentrate there my tests. Is that possible through the package tangle view ? – Guillermo Moscoso Mar 4 '11 at 0:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.