public Extent getExtent(Class aClass, boolean include_extent)
{
if (!include_extent) throw new UnsupportedOperationException("Not yet implemented!");
if (isClosed())
{
throw new JDOFatalUserException(generateIsClosedErrorMessage("getExtent(Class, boolean)"));
}
return new ExtentImpl(aClass, m_conn, this, include_extent);
}