* @param file The filepath relative to the classpath
* @return a VFS leaf for the given file
*/
public static VFSLeaf createLeafFromClasspath(Class clazz, String file) {
ClasspathMediaResource cmr = new ClasspathMediaResource(clazz, file);
StreamedImpl si = new StreamedImpl("vfs-from-classpath", null, cmr.getInputStream());
return si;
}