Dear Wiki user, You have subscribed to a wiki page or wiki category on "Jdo Wiki" for change notification. The following page has been changed by CraigRussell: http://wiki.apache.org/jdo/ChangeLog ------------------------------------------------------------------------------ 1. Change the last paragraph of 21.6 from "For Detachable classes, the results of restoring a serialized persistent instance graph is a graph of interconnected detached instances that might be attached via the attachCopy methods." to "For Detachable classes, the results of restoring a serialized persistent instance graph is a graph of interconnected detached instances that might be attached via the makePersistent methods." - 1. Change 21.13 from "Some methods require a non-null state manager. In these cases, if the {{{jdoStateManager}}} is null, then {{{IllegalStateException}}} is thrown." + 1. Change 21.13 from "Some methods require a non-null state manager. In these cases, if the {{{jdoStateManager}}} is null, then {{{IllegalStateException}}} is thrown." to "Some methods require a non-null state manager. In these cases, if the {{{jdoStateManager}}} is null, then {{{JDOFatalInternalException}}} is thrown." - to "Some methods require a non-null state manager. In these cases, if the {{{jdoStateManager}}} is null, then {{{JDOFatalInternalException}}} is thrown." + 1. Change 21.21.7 Generated jdoGetManagedFieldCount sample implementation to avoid using the jdoFieldNames field that might be initialized after it is used during initialization of a subclass. + {{{protected static int jdoGetManagedFieldCount () { + return jdoFieldNames.length; + } + }}} to {{{protected static int jdoGetManagedFieldCount () { + return ; + } + }}} 1. Add to Chapter 23, constants defined in the {{{JDOPermission}}} class: {{{public static final javax.jdo.spi.JDOPermission CLOSE_PERSISTENCE_MANAGER_FACTORY = "closePersistenceManagerFactory";