Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'JCL/converterJclMin9/src/java/util/Iterator.java')
-rw-r--r--JCL/converterJclMin9/src/java/util/Iterator.java7
1 files changed, 7 insertions, 0 deletions
diff --git a/JCL/converterJclMin9/src/java/util/Iterator.java b/JCL/converterJclMin9/src/java/util/Iterator.java
new file mode 100644
index 0000000000..ae53f8408e
--- /dev/null
+++ b/JCL/converterJclMin9/src/java/util/Iterator.java
@@ -0,0 +1,7 @@
+package java.util;
+
+public interface Iterator<E> {
+ boolean hasNext();
+ E next();
+ void remove();
+}

Back to the top