Home | History | Annotate | Download | only in resource

Lines Matching refs:JarFile

30 import java.util.jar.JarFile;
39 private JarFile _jarFile;
76 LOG.debug("Closing JarFile "+_jarFile.getName());
163 JarFile jarFile=null;
166 jarFile=_jarFile;
174 jarFile=c.getJarFile();
183 if (jarFile!=null && _entry==null && !_directory)
185 // OK - we have a JarFile, lets look at the entries for our path
186 Enumeration<JarEntry> e=jarFile.entries();
276 //Sun's JarURLConnection impl for jar: protocol will close a JarFile in its connect() method if
279 //the situation where the JarFile we have remembered in our _jarFile member has actually been closed
281 //So, do one retry to drop a connection and get a fresh JarFile
304 JarFile jarFile=_jarFile;
305 if(jarFile==null)
311 jarFile=jc.getJarFile();
321 Enumeration<JarEntry> e=jarFile.entries();