All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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.

There is a newer version: 2.0.7
Show newest version
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