I'm currently refactoring a project used by two application-projects and facing following problem:
The old project should be split up into three new projects A, B and C, because its growing and getting confusing.
So project A is implementing classes used by application 1, project B is implementing some other classes used by application 2 and rest of the classes which are used by both applications 1 and 2 should be implemented in project C.
I already began the refactoring, so the structure is existing and working. Now I want to find out, if there are any classes left in project C, which are only used by application 1 or application 2
Because there are about 500 Java classes I would like to use a script to see whether a Java class is implemented by project A, B or both. In eclipse manually I can select the classname of every java class and go to "references --> workspace" and check the results but I hope someone has a better idea :-)
Thank you in advance!