KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > java > util > jar > JavaUtilJarAccessImpl


1 /*
2  * @(#)JavaUtilJarAccessImpl.java 1.4 03/12/19
3  *
4  * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
5  * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
6  */

7
8 package java.util.jar;
9
10 import java.io.IOException JavaDoc;
11 import sun.misc.JavaUtilJarAccess;
12
13 class JavaUtilJarAccessImpl implements JavaUtilJarAccess {
14     public boolean jarFileHasClassPathAttribute(JarFile JavaDoc jar) throws IOException JavaDoc {
15         return jar.hasClassPathAttribute();
16     }
17 }
18
Popular Tags