How do I find all references (i.e., dependencies, afferent couplings) to a Java class? -
using eclipse, can select class , list references ( ctrl + shift + g ). i'm looking mechanism entire development team obtain same list of references central location, such sonarqube server. when drill down class on sonarqube, shows me number of afferent couplings. how can find out are? know take huge amount of time/space sonar generate kind of report, maybe there's plug-in can calculate requested (as per execution of jenkins job). any suggestions of solutions can used list dependencies (afferent couplings) java type in given codebase help. after long search, found, experimented with, configured, , rolled out solution problem our entire java development organization. here's summary of solution: we have several java projects, broadly divided libs , (web) applications. applications can use different libs. challenge find in our entire codebase callers of given class/method/constructor in 1 of our libs. we use continuous integration tool (jenkins) builds lib...