All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.venky.core.util.PackageUtil Maven / Gradle / Ivy

There is a newer version: 1.18
Show newest version
/*
 * 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;
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy