home *** CD-ROM | disk | FTP | other *** search
- package java.util;
-
- final class PropertyResourceBundle$1 implements Enumeration {
- // $FF: synthetic field
- private final PropertyResourceBundle this$0;
- // $FF: synthetic field
- private final Enumeration val$parentKeys;
- // $FF: synthetic field
- private final Enumeration val$myKeys;
- Object temp;
-
- public boolean hasMoreElements() {
- if (this.temp == null) {
- this.nextElement();
- }
-
- return this.temp != null;
- }
-
- public Object nextElement() {
- Object var1 = this.temp;
- if (this.val$myKeys.hasMoreElements()) {
- this.temp = this.val$myKeys.nextElement();
- } else {
- this.temp = null;
-
- while(this.temp == null && this.val$parentKeys.hasMoreElements()) {
- this.temp = this.val$parentKeys.nextElement();
- if (this.this$0.lookup.containsKey(this.temp)) {
- this.temp = null;
- }
- }
- }
-
- return var1;
- }
-
- // $FF: synthetic method
- PropertyResourceBundle$1(Enumeration var1, Enumeration var2, PropertyResourceBundle var3) {
- this.val$myKeys = var1;
- this.val$parentKeys = var2;
- this.this$0 = var3;
- }
- }
-