tools.xor.service.EntityScroll Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xor Show documentation
Show all versions of xor Show documentation
Empowering Model Driven Architecture in J2EE applications
package tools.xor.service;
import java.io.Closeable;
import java.io.IOException;
import java.util.Iterator;
public interface EntityScroll extends Closeable, Iterator
{
void close () throws IOException;
boolean hasNext ();
T next ();
}