logger.entering("DirectoryInsideJarURLArchive", "DirectoryInsideJarURLArchive", // NOI18N
new Object[]{url});
this.logger = logger;
assert(url.getProtocol().equals("jar")); // NOI18N
rootURL = url;
JarURLConnection conn =
JarURLConnection.class.cast(url.openConnection());
jarFile = conn.getJarFile();
logger.logp(Level.FINER, "DirectoryInsideJarURLArchive",
"DirectoryInsideJarURLArchive", "jarFile = {0}", jarFile);
relativeRootPath = conn.getEntryName();
init();