home *** CD-ROM | disk | FTP | other *** search
- package java.util;
-
- class PropertyResourceBundle$1 implements Enumeration {
- Object temp;
- // $FF: synthetic field
- private final Enumeration val$myKeys;
- // $FF: synthetic field
- private final Enumeration val$parentKeys;
- // $FF: synthetic field
- private final PropertyResourceBundle this$0;
-
- PropertyResourceBundle$1(PropertyResourceBundle var1, Enumeration var2, Enumeration var3) {
- this.this$0 = var1;
- this.val$myKeys = var2;
- this.val$parentKeys = var3;
- this.temp = null;
- }
-
- 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 (PropertyResourceBundle.access$000(this.this$0).containsKey(this.temp)) {
- this.temp = null;
- }
- }
- }
-
- return var1;
- }
- }
-