com.venky.core.util.PackageUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common Show documentation
Show all versions of common Show documentation
Commonly used programming tasks in java
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.venky.core.util;
import java.io.File;
import java.net.URL;
import java.util.ArrayList;
import java.util.List;
import com.venky.core.util.pkg.DirectoryIntrospector;
import com.venky.core.util.pkg.JarIntrospector;
/**
*
* @author venky
*/
public class PackageUtil {
public static List getClasses(URL url, String packagePath) {
List classes = new ArrayList();
if (url.getProtocol().equals("jar")){
File f = new File(url.getFile().substring("file:".length(), url.getFile().lastIndexOf("!")));
classes = new JarIntrospector(f).getClasses(packagePath);
}else if (url.getProtocol().equals("file")) {
File root = new File(url.getPath());
classes = new DirectoryIntrospector(root).getClasses(packagePath);
}
return classes;
}
}