List of utility methods to do Class from Package
Set | getClassNamesPackage(String pckgname) get Class Names Package Queue<File> directories = new LinkedList<File>(); try { ClassLoader cld = Thread.currentThread().getContextClassLoader(); if (cld == null) { throw new ClassNotFoundException("Can't get class loader."); String path = pckgname.replace('.', '/'); Enumeration<URL> resources = cld.getResources(path); ... |