I need to enumerate all classes in a package and add them to a List. The non-dynamic version for a single class goes like this:
List allClasses = new ArrayList();
allClasses.add(String.class);
How can I do this dynamically to add all classes in a package and all its subpackages?
Update: Having read the early answers, it's absolutely true that I'm trying to solve another secondary problem, so let me state it. And I know this is possible since other tools do it. See new question here.
Update: Reading this again, I can see how it's being misread. I'm looking to enumerate all of MY PROJECT'S classes from the file system after compilation.
