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

org.jruby.util.Loader Maven / Gradle / Ivy

package org.jruby.util;

import java.io.IOException;
import java.net.URL;
import java.util.Enumeration;

/**
 * Created by cmeier on 7/30/15.
 */
public interface Loader
{

    URL getResource(String path);// throws IOException;

    Enumeration getResources(String path) throws IOException;

    Class loadClass(String name) throws ClassNotFoundException;

    ClassLoader getClassLoader();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy