mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
19 lines
497 B
Java
Generated
19 lines
497 B
Java
Generated
// Generated automatically from javax.jdo.Extent for testing purposes
|
|
|
|
package javax.jdo;
|
|
|
|
import java.util.Iterator;
|
|
import javax.jdo.FetchPlan;
|
|
import javax.jdo.PersistenceManager;
|
|
|
|
public interface Extent<E> extends java.lang.Iterable<E>
|
|
{
|
|
FetchPlan getFetchPlan();
|
|
PersistenceManager getPersistenceManager();
|
|
boolean hasSubclasses();
|
|
java.lang.Class<E> getCandidateClass();
|
|
java.util.Iterator<E> iterator();
|
|
void close(java.util.Iterator<E> p0);
|
|
void closeAll();
|
|
}
|