0
votes
Java: At runtime, find all classes in app that extend a base class
Unfortunately this isn't entirely possible as the ClassLoader won't tell you what classes are available. You can, however, get fairly close doing something like this:
for (String cl …
