home *** CD-ROM | disk | FTP | other *** search
- package org.apache.jsp.tagplugin;
-
- import java.util.Enumeration;
- import java.util.Iterator;
-
- class foreach_jsp$10 implements Iterator {
- // $FF: synthetic field
- private final Enumeration val$e;
- // $FF: synthetic field
- private final foreach_jsp this$0;
-
- foreach_jsp$10(foreach_jsp this$0, Enumeration val$e) {
- this.this$0 = this$0;
- this.val$e = val$e;
- }
-
- public boolean hasNext() {
- return this.val$e.hasMoreElements();
- }
-
- public Object next() {
- return this.val$e.nextElement();
- }
-
- public void remove() {
- }
- }
-