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

org.daisy.dotify.common.io.ResourceLocator Maven / Gradle / Ivy

The newest version!
package org.daisy.dotify.common.io;

import java.net.URL;


/**
 * Provides a method for locating resources.
 * @author Joel Håkansson
 *
 */
public interface ResourceLocator {

	/**
	 * Gets the URL for the given resource path.
	 * @param subpath the path to the resource
	 * @return returns the URL for the given resource
	 * @throws ResourceLocatorException if the resource could not be found
	 */
	public URL getResource(String subpath) throws ResourceLocatorException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy