How to find out what class is referenced the most?
I want to find the most important classes in a large system and i think that is the best way to do it. any ideas?
|
How to find out what class is referenced the most? I want to find the most important classes in a large system and i think that is the best way to do it. any ideas? |
||||
|
|
|
Maybe the Metrics plugin can do it? I haven’t tried it, but on the home page it mentions two coupling metrics and shows pretty graphs. |
|||
|
|
|
Use VisualVM and then go to Sampler -> Memory and you will see a graph as below representing the number of instances (not exactly the reference number): Alternatively you can use some Eclipse plugins (I use inCode) or Sonar for statically obtaining the reference count.
|
|||
|
|
|
Another similar tool CodePro - Dependency Analysis. |
|||
|
|
|
You can use the Netbeans Profiler tools. If you choose the Memory mode you will be able to know Live Bytes /Live Objects / Allocated Objects and more per classes. I think this way you can find out the classes you use the more or that use the more memory. You have to run the app to know the results I don't know if your looking for a "static" way. |
|||
|
|