77787980818283
protected VFSContext getVFSContext(String name) throws Exception { URL url = getRootResource(name); url = JarUtils.createJarURL(url); return new JarContext(url); }
53545556575859
protected VFSContext getVFSContext(String name) throws Exception { URL url = getResource("/vfs/context/jar/" + name + ".jar"); url = JarUtils.createJarURL(url); return new JarContext(url); }
83848586878889
63646566676869
} protected VFSContext getVFSContext(URL url) throws Exception { url = JarUtils.createJarURL(url); return new JarContext(url); }
70717273747576
90919293949596
*/ protected VFSContext createVSFContext(URL url) throws Exception { if (url.toExternalForm().startsWith("jar") == false) url = JarUtils.createJarURL(url); return new JarContext(url); }