home *** CD-ROM | disk | FTP | other *** search
- package java.lang;
-
- import java.util.Enumeration;
- import sun.misc.Resource;
-
- class ClassLoader$2 implements Enumeration {
- // $FF: synthetic field
- private final Enumeration val$e;
-
- ClassLoader$2(Enumeration var1) {
- this.val$e = var1;
- }
-
- public Object nextElement() {
- return ((Resource)this.val$e.nextElement()).getURL();
- }
-
- public boolean hasMoreElements() {
- return this.val$e.hasMoreElements();
- }
- }
-