Is there a way to use javassist to find a list of existing java classes in the system search path? I know you can use ".getDefault()" to return the system's default search path, is there a way list the classes on this search path without knowing the class names.
I don't think javassist provides for this, but the following library should get you there: https://code.google.com/p/reflections/
Alternatively, you could just use the class loader to load the class files as resources from the classpath.