home *** CD-ROM | disk | FTP | other *** search
- package org.apache.jsp.tagplugin;
-
- import java.util.Iterator;
-
- class foreach_jsp$5 implements Iterator {
- int index;
- // $FF: synthetic field
- private final short[] val$a;
- // $FF: synthetic field
- private final foreach_jsp this$0;
-
- foreach_jsp$5(foreach_jsp this$0, short[] val$a) {
- this.this$0 = this$0;
- this.val$a = val$a;
- this.index = 0;
- }
-
- public boolean hasNext() {
- return this.index < this.val$a.length;
- }
-
- public Object next() {
- return new Short(this.val$a[this.index++]);
- }
-
- public void remove() {
- }
- }
-