Index: src/java/javax/jdo/JDODetachedFieldAccessException.java =================================================================== --- src/java/javax/jdo/JDODetachedFieldAccessException.java (Revision 389512) +++ src/java/javax/jdo/JDODetachedFieldAccessException.java (Arbeitskopie) @@ -30,7 +30,8 @@ public class JDODetachedFieldAccessException extends JDOUserException { /** - * Constructs a new JDODetachedFieldAccessException without a detail message. + * Constructs a new JDODetachedFieldAccessException without a + * detail message. * @since 2.0 */ public JDODetachedFieldAccessException() { @@ -38,7 +39,8 @@ /** - * Constructs a new JDODetachedFieldAccessException with the specified detail message. + * Constructs a new JDODetachedFieldAccessException with the + * specified detail message. * @param msg the detail message. * @since 2.0 */ Index: src/java/javax/jdo/JDOOptimisticVerificationException.java =================================================================== --- src/java/javax/jdo/JDOOptimisticVerificationException.java (Revision 389512) +++ src/java/javax/jdo/JDOOptimisticVerificationException.java (Arbeitskopie) @@ -31,22 +31,24 @@ public class JDOOptimisticVerificationException extends JDOFatalDataStoreException { /** - * Constructs a new JDOOptimisticVerificationException without a detail message. + * Constructs a new JDOOptimisticVerificationException without a + * detail message. */ public JDOOptimisticVerificationException() { } /** - * Constructs a new JDOOptimisticVerificationException with the specified detail message. + * Constructs a new JDOOptimisticVerificationException with the + * specified detail message. * @param msg the detail message. */ public JDOOptimisticVerificationException(String msg) { super(msg); } - /** Constructs a new JDOOptimisticVerificationException with the specified detail message - * and failed object. + /** Constructs a new JDOOptimisticVerificationException with the + * specified detail message and failed object. * @param msg the detail message. * @param failed the failed object. */ @@ -55,8 +57,8 @@ } /** - * Constructs a new JDOOptimisticVerificationException with the specified - * detail message and nested Throwables. + * Constructs a new JDOOptimisticVerificationException with the + * specified detail message and nested Throwables. * @param msg the detail message. * @param nested the nested Throwable[]. */ Index: src/java/javax/jdo/listener/DetachCallback.java =================================================================== --- src/java/javax/jdo/listener/DetachCallback.java (Revision 389512) +++ src/java/javax/jdo/listener/DetachCallback.java (Arbeitskopie) @@ -21,8 +21,6 @@ package javax.jdo.listener; -import javax.jdo.PersistenceManager; - /** * This interface is used to notify instances of detach events. * @version 2.0 @@ -32,7 +30,7 @@ /** * This method is called during the execution of - * {@link PersistenceManager#detachCopy} on the + * {@link javax.jdo.PersistenceManager#detachCopy} on the * persistent instance before the copy is made. * @since 2.0 */ @@ -40,7 +38,7 @@ /** * This method is called during the execution of - * {@link PersistenceManager#detachCopy} on the + * {@link javax.jdo.PersistenceManager#detachCopy} on the * detached instance after the copy is made. * @param detached The corresponding (attached) persistent instance. * @since 2.0 Index: src/java/javax/jdo/listener/LoadLifecycleListener.java =================================================================== --- src/java/javax/jdo/listener/LoadLifecycleListener.java (Revision 389512) +++ src/java/javax/jdo/listener/LoadLifecycleListener.java (Arbeitskopie) @@ -38,4 +38,4 @@ * @since 2.0 */ void postLoad (InstanceLifecycleEvent event); -} \ No newline at end of file +} Index: src/java/javax/jdo/listener/ClearLifecycleListener.java =================================================================== --- src/java/javax/jdo/listener/ClearLifecycleListener.java (Revision 389512) +++ src/java/javax/jdo/listener/ClearLifecycleListener.java (Arbeitskopie) @@ -55,4 +55,4 @@ * @since 2.0 */ void postClear (InstanceLifecycleEvent event); -} \ No newline at end of file +} Index: src/java/javax/jdo/listener/DetachLifecycleListener.java =================================================================== --- src/java/javax/jdo/listener/DetachLifecycleListener.java (Revision 389512) +++ src/java/javax/jdo/listener/DetachLifecycleListener.java (Arbeitskopie) @@ -21,8 +21,6 @@ package javax.jdo.listener; -import javax.jdo.PersistenceManager; - /** * This interface is implemented by listeners to be notified of * detach events. @@ -34,7 +32,7 @@ /** * This method is called during the execution of - * {@link PersistenceManager#detachCopy} before the + * {@link javax.jdo.PersistenceManager#detachCopy} before the * detached copy is made. It is called before the method * {@link DetachCallback#jdoPreDetach} is called on the * instance to be detached. @@ -45,7 +43,7 @@ /** * This method is called during the execution of - * {@link PersistenceManager#detachCopy} after the + * {@link javax.jdo.PersistenceManager#detachCopy} after the * detached copy is made. It is called after the method * {@link DetachCallback#jdoPreDetach} is called on * the detached instance. Index: src/java/javax/jdo/listener/AttachCallback.java =================================================================== --- src/java/javax/jdo/listener/AttachCallback.java (Revision 389512) +++ src/java/javax/jdo/listener/AttachCallback.java (Arbeitskopie) @@ -21,8 +21,6 @@ package javax.jdo.listener; -import javax.jdo.PersistenceManager; - /** * This interface is used to notify instances of attach events. * @version 2.0 @@ -32,7 +30,7 @@ /** * This method is called during the execution of - * {@link PersistenceManager#makePersistent} on the detached instance + * {@link javax.jdo.PersistenceManager#makePersistent} on the detached instance * before the copy is made. * @since 2.0 */ @@ -40,10 +38,10 @@ /** * This method is called during the execution of - * {@link PersistenceManager#makePersistent} on the persistent + * {@link javax.jdo.PersistenceManager#makePersistent} on the persistent * instance after the copy is made. * @param attached The corresponding (non-attached) instance that was - * attached in the call to {@link PersistenceManager#makePersistent}. + * attached in the call to {@link javax.jdo.PersistenceManager#makePersistent}. * @since 2.0 */ public void jdoPostAttach(Object attached); Index: src/java/javax/jdo/listener/DirtyLifecycleListener.java =================================================================== --- src/java/javax/jdo/listener/DirtyLifecycleListener.java (Revision 389512) +++ src/java/javax/jdo/listener/DirtyLifecycleListener.java (Arbeitskopie) @@ -45,4 +45,4 @@ * @since 2.0 */ void postDirty (InstanceLifecycleEvent event); -} \ No newline at end of file +} Index: src/java/javax/jdo/listener/StoreLifecycleListener.java =================================================================== --- src/java/javax/jdo/listener/StoreLifecycleListener.java (Revision 389512) +++ src/java/javax/jdo/listener/StoreLifecycleListener.java (Arbeitskopie) @@ -21,9 +21,6 @@ package javax.jdo.listener; -import javax.jdo.PersistenceManager; -import javax.jdo.Transaction; - /** * This interface is implemented by listeners to be notified of * store events. @@ -34,9 +31,9 @@ extends InstanceLifecycleListener { /** - * Invoked whenever a persistent instance is stored, for example - * during {@link PersistenceManager#flush} or {@link - * Transaction#commit}. It is called before the + * Invoked whenever a persistent instance is stored, for example during + * {@link javax.jdo.PersistenceManager#flush} or + * {@link javax.jdo.Transaction#commit}. It is called before the * method {@link StoreCallback#jdoPreStore} is invoked. * @param event the store event. * @since 2.0 @@ -44,12 +41,12 @@ void preStore (InstanceLifecycleEvent event); /** - * Invoked whenever a persistent instance is stored, for example - * during {@link PersistenceManager#flush} or {@link - * Transaction#commit}. It is called after the + * Invoked whenever a persistent instance is stored, for example during + * {@link javax.jdo.PersistenceManager#flush} or + * {@link javax.jdo.Transaction#commit}. It is called after the * field values have been stored. * @param event the store event. * @since 2.0 */ void postStore (InstanceLifecycleEvent event); -} \ No newline at end of file +} Index: src/java/javax/jdo/listener/InstanceLifecycleEvent.java =================================================================== --- src/java/javax/jdo/listener/InstanceLifecycleEvent.java (Revision 389512) +++ src/java/javax/jdo/listener/InstanceLifecycleEvent.java (Arbeitskopie) @@ -119,7 +119,8 @@ * getPersistentInstance() and * getDetachedInstance() be used instead. * - * @return The detached instance for preDetach and postAttach, the persistent instance otherwise. + * @return The detached instance for preDetach and postAttach, + * the persistent instance otherwise. * * @since 2.0 * @see #getPersistentInstance() @@ -133,7 +134,8 @@ /** * Returns the persistent instance involved in the event. * - * @return The persistent instance involved in the event, or null if there was none. + * @return The persistent instance involved in the event, or null if there + * was none. * * @see "Section 12.15, Java Data Objects 2.0 Specification" */ @@ -185,4 +187,4 @@ throws java.io.IOException { throw new java.io.NotSerializableException(); } -} \ No newline at end of file +} Index: src/java/javax/jdo/listener/DeleteLifecycleListener.java =================================================================== --- src/java/javax/jdo/listener/DeleteLifecycleListener.java (Revision 389512) +++ src/java/javax/jdo/listener/DeleteLifecycleListener.java (Arbeitskopie) @@ -21,8 +21,6 @@ package javax.jdo.listener; -import javax.jdo.PersistenceManager; - /** * This interface is implemented by listeners to be notified of * delete events. @@ -34,8 +32,8 @@ /** * Invoked whenever a persistent instance is deleted, for example - * during {@link PersistenceManager#deletePersistent}. Access to field - * values within this call are permitted. + * during {@link javax.jdo.PersistenceManager#deletePersistent}. + * Access to field values within this call are permitted. *

This method is called before the instance callback * {@link DeleteCallback#jdoPreDelete}. * @param event the delete event. @@ -45,11 +43,11 @@ /** * Invoked whenever a persistent instance is deleted, for example - * during {@link PersistenceManager#deletePersistent}. + * during {@link javax.jdo.PersistenceManager#deletePersistent}. *

This method is called after the instance transitions * to persistent-deleted. Access to field values is not permitted. * @param event the delete event. * @since 2.0 */ void postDelete (InstanceLifecycleEvent event); -} \ No newline at end of file +} Index: src/java/javax/jdo/listener/CreateLifecycleListener.java =================================================================== --- src/java/javax/jdo/listener/CreateLifecycleListener.java (Revision 389512) +++ src/java/javax/jdo/listener/CreateLifecycleListener.java (Arbeitskopie) @@ -21,8 +21,6 @@ package javax.jdo.listener; -import javax.jdo.PersistenceManager; - /** * This interface is implemented by listeners to be notified of * create events. @@ -34,10 +32,10 @@ /** * Invoked whenever an instance is made persistent via a - * call to {@link PersistenceManager#makePersistent} or during + * call to {@link javax.jdo.PersistenceManager#makePersistent} or during * persistence by reachability. * @param event the create event. * @since 2.0 */ void postCreate (InstanceLifecycleEvent event); -} \ No newline at end of file +} Index: src/java/javax/jdo/listener/InstanceLifecycleListener.java =================================================================== --- src/java/javax/jdo/listener/InstanceLifecycleListener.java (Revision 389512) +++ src/java/javax/jdo/listener/InstanceLifecycleListener.java (Arbeitskopie) @@ -31,4 +31,4 @@ * @since 2.0 */ public interface InstanceLifecycleListener { -} \ No newline at end of file +} Index: src/java/javax/jdo/listener/AttachLifecycleListener.java =================================================================== --- src/java/javax/jdo/listener/AttachLifecycleListener.java (Revision 389512) +++ src/java/javax/jdo/listener/AttachLifecycleListener.java (Arbeitskopie) @@ -21,8 +21,6 @@ package javax.jdo.listener; -import javax.jdo.PersistenceManager; - /** * This interface is implemented by listeners to be notified of * attach events. @@ -34,8 +32,8 @@ /** * This method is called before a detached instance is attached, via the - * {@link PersistenceManager#makePersistent} method. The source instance - * is the detached instance. This method is called before the + * {@link javax.jdo.PersistenceManager#makePersistent} method. The source + * instance is the detached instance. This method is called before the * corresponding {@link AttachCallback#jdoPreAttach} on the detached * instance. * @param event the attach event. @@ -45,7 +43,7 @@ /** * This method is called after a detached instance is attached, via the - * {@link PersistenceManager#makePersistent} method. The source + * {@link javax.jdo.PersistenceManager#makePersistent} method. The source * instance is the corresponding persistent instance in the cache; the * target instance is the detached instance. This method is called after * the corresponding {@link AttachCallback#jdoPostAttach} on the Index: src/java/javax/jdo/Query.java =================================================================== --- src/java/javax/jdo/Query.java (Revision 389512) +++ src/java/javax/jdo/Query.java (Arbeitskopie) @@ -28,14 +28,14 @@ * instances, values, and aggregate data * from the data store. * - * The {@link PersistenceManager} is the factory for Query instances. There - * may be many Query instances associated with a PersistenceManager. - * Multiple queries might be executed simultaneously by different threads, but the - * implementation might choose to execute them serially. In either case, the - * implementation must be thread safe. + * The {@link PersistenceManager} is the factory for Query instances. + * There may be many Query instances associated with a + * PersistenceManager. Multiple queries might be executed + * simultaneously by different threads, but the implementation might choose to + * execute them serially. In either case, the implementation must be thread safe. * - *

There are three required elements in a Query: the class of the results, - * the candidate collection of instances, and the filter. + *

There are three required elements in a Query: the class of the + * results, the candidate collection of instances, and the filter. * *

There are optional elements: parameter declarations, variable * declarations, import statements, ordering and grouping specifications, @@ -78,8 +78,8 @@ * based on the parameters given. They return a single instance or a * List of result class instances which the * user can iterate to get results. The signature - * of the execute methods specifies that they return an Object which - * must be cast to the appropriate result by the user. + * of the execute methods specifies that they return an + * Object which must be cast to the appropriate result by the user. *

Any parameters passed to the execute methods are used only for * this execution, and are not remembered for future execution. * @version 2.0 @@ -143,7 +143,8 @@ * then it defaults to "true", which has the effect of filtering * the input Collection only for class type. *

An element of the candidate collection is returned in the result if: - *