home *** CD-ROM | disk | FTP | other *** search
- package java.util;
-
- import java.util.Collections.SingletonSet;
-
- class Collections$5 implements Iterator {
- private boolean hasNext;
- // $FF: synthetic field
- private final Collections.SingletonSet this$0;
-
- Collections$5(Collections.SingletonSet var1) {
- this.this$0 = var1;
- this.hasNext = true;
- }
-
- public boolean hasNext() {
- return this.hasNext;
- }
-
- public Object next() {
- if (this.hasNext) {
- this.hasNext = false;
- return SingletonSet.access$500(this.this$0);
- } else {
- throw new NoSuchElementException();
- }
- }
-
- public void remove() {
- throw new UnsupportedOperationException();
- }
- }
-