net.sourceforge.retroweaver.runtime.java.lang.Iterable Maven / Gradle / Ivy
Go to download
Retroweaver is a tool, which converts Java 5 (or 6) compliant
class files into Java 1.x compliant class files. The jar file
retroweaver-rt.jar contains the runtime classes only.
To run the class processor, you need the jar file
retroweaver.jar.
package net.sourceforge.retroweaver.runtime.java.lang;
import java.util.Iterator;
/**
* A version of the 1.5 java.lang.Iterable class for the 1.4 VM.
*/
public interface Iterable {
Iterator iterator();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy