src/share/classes/java/util/jar/JavaUtilJarAccessImpl.java

Print this page

        

*** 35,44 **** --- 35,48 ---- class JavaUtilJarAccessImpl implements JavaUtilJarAccess { public boolean jarFileHasClassPathAttribute(JarFile jar) throws IOException { return jar.hasClassPathAttribute(); } + public boolean jarFileHasProfileAttribute(JarFile jar) throws IOException { + return jar.hasProfileAttribute(); + } + public CodeSource[] getCodeSources(JarFile jar, URL url) { return jar.getCodeSources(url); } public CodeSource getCodeSource(JarFile jar, URL url, String name) {