home *** CD-ROM | disk | FTP | other *** search
- package java.util;
-
- class Collections$6 implements Enumeration {
- // $FF: renamed from: i java.util.Iterator
- Iterator field_0;
- // $FF: synthetic field
- private final Collection val$c;
-
- Collections$6(Collection var1) {
- this.val$c = var1;
- this.field_0 = this.val$c.iterator();
- }
-
- public boolean hasMoreElements() {
- return this.field_0.hasNext();
- }
-
- public Object nextElement() {
- return this.field_0.next();
- }
- }
-