You are viewing a plain text version of this content. The canonical link for it is here.
Posted to ojb-dev@db.apache.org by to...@apache.org on 2005/12/21 23:30:49 UTC

cvs commit: db-ojb/src/java/org/apache/ojb/otm/swizzle CopySwizzling.java NoSwizzling.java Swizzling.java

tomdz       2005/12/21 14:30:49

  Modified:    src/java/org/apache/ojb/otm/lock/wait Tag: OJB_1_0_RELEASE
                        NoWaitStrategy.java
                        ConcurrentModificationException.java
                        DeadlockException.java LockWaitStrategy.java
                        TimeoutStrategy.java
               src/java/org/apache/ojb/otm/transaction Tag: OJB_1_0_RELEASE
                        ManagedTransactionFactory.java
                        TransactionFactoryException.java
                        TransactionFactory.java
                        LocalTransactionFactory.java
               src/jca/org/apache/ojb/otm/connector Tag: OJB_1_0_RELEASE
                        OTMConnectionEventListener.java
                        OTMConnectionMetaData.java
                        OTMConnectionRequestInfo.java JCAKit.java
                        OTMJCAConnection.java OTMJCAManagedConnection.java
                        OTMConnectionRuntimeException.java
                        OTMJCAManagedConnectionFactory.java Util.java
                        OTMConnectionManager.java
               src/java/org/apache/ojb/otm/states Tag: OJB_1_0_RELEASE
                        Transient.java Hollow.java PersistentDeleted.java
                        PersistentNewDeleted.java PersistentDirty.java
                        State.java PersistentClean.java
                        IllegalObjectStateException.java PersistentNew.java
               src/java/org/apache/ojb/soda Tag: OJB_1_0_RELEASE
                        ConstraintImpl.java ObjectContainerImpl.java
                        QueryImpl.java ObjectSetImpl.java
               src/java/org/odmg Tag: OJB_1_0_RELEASE DArray.java
               src/java/org/odbms Tag: OJB_1_0_RELEASE Query.java
                        ObjectSet.java Constraint.java ObjectContainer.java
               src/java/org/apache/ojb/otm/swizzle Tag: OJB_1_0_RELEASE
                        CopySwizzling.java NoSwizzling.java Swizzling.java
  Log:
  Updated license
  
  Revision  Changes    Path
  No                   revision
  No                   revision
  1.6.2.1   +6 -5      db-ojb/src/java/org/apache/ojb/otm/lock/wait/NoWaitStrategy.java
  
  Index: NoWaitStrategy.java
  ===================================================================
  RCS file: /home/cvs/db-ojb/src/java/org/apache/ojb/otm/lock/wait/NoWaitStrategy.java,v
  retrieving revision 1.6
  retrieving revision 1.6.2.1
  diff -u -r1.6 -r1.6.2.1
  --- NoWaitStrategy.java	4 Apr 2004 23:53:41 -0000	1.6
  +++ NoWaitStrategy.java	21 Dec 2005 22:30:42 -0000	1.6.2.1
  @@ -1,10 +1,6 @@
   package org.apache.ojb.otm.lock.wait;
   
  -import org.apache.ojb.otm.core.Transaction;
  -import org.apache.ojb.otm.lock.LockingException;
  -import org.apache.ojb.otm.lock.ObjectLock;
  -
  -/* Copyright 2003-2004 The Apache Software Foundation
  +/* Copyright 2003-2005 The Apache Software Foundation
    *
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  @@ -18,6 +14,11 @@
    * See the License for the specific language governing permissions and
    * limitations under the License.
    */
  +
  +import org.apache.ojb.otm.core.Transaction;
  +import org.apache.ojb.otm.lock.LockingException;
  +import org.apache.ojb.otm.lock.ObjectLock;
  +
   public class NoWaitStrategy implements LockWaitStrategy
   {
   
  
  
  
  1.4.2.1   +1 -1      db-ojb/src/java/org/apache/ojb/otm/lock/wait/ConcurrentModificationException.java
  
  Index: ConcurrentModificationException.java
  ===================================================================
  RCS file: /home/cvs/db-ojb/src/java/org/apache/ojb/otm/lock/wait/ConcurrentModificationException.java,v
  retrieving revision 1.4
  retrieving revision 1.4.2.1
  diff -u -r1.4 -r1.4.2.1
  --- ConcurrentModificationException.java	4 Apr 2004 23:53:41 -0000	1.4
  +++ ConcurrentModificationException.java	21 Dec 2005 22:30:42 -0000	1.4.2.1
  @@ -2,7 +2,7 @@
   
   import org.apache.ojb.otm.lock.LockingException;
   
  -/* Copyright 2003-2004 The Apache Software Foundation
  +/* Copyright 2003-2005 The Apache Software Foundation
    *
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  
  
  
  1.4.2.1   +1 -1      db-ojb/src/java/org/apache/ojb/otm/lock/wait/DeadlockException.java
  
  Index: DeadlockException.java
  ===================================================================
  RCS file: /home/cvs/db-ojb/src/java/org/apache/ojb/otm/lock/wait/DeadlockException.java,v
  retrieving revision 1.4
  retrieving revision 1.4.2.1
  diff -u -r1.4 -r1.4.2.1
  --- DeadlockException.java	4 Apr 2004 23:53:41 -0000	1.4
  +++ DeadlockException.java	21 Dec 2005 22:30:42 -0000	1.4.2.1
  @@ -1,6 +1,6 @@
   package org.apache.ojb.otm.lock.wait;
   
  -/* Copyright 2003-2004 The Apache Software Foundation
  +/* Copyright 2003-2005 The Apache Software Foundation
    *
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  
  
  
  1.5.2.1   +1 -1      db-ojb/src/java/org/apache/ojb/otm/lock/wait/LockWaitStrategy.java
  
  Index: LockWaitStrategy.java
  ===================================================================
  RCS file: /home/cvs/db-ojb/src/java/org/apache/ojb/otm/lock/wait/LockWaitStrategy.java,v
  retrieving revision 1.5
  retrieving revision 1.5.2.1
  diff -u -r1.5 -r1.5.2.1
  --- LockWaitStrategy.java	4 Apr 2004 23:53:41 -0000	1.5
  +++ LockWaitStrategy.java	21 Dec 2005 22:30:42 -0000	1.5.2.1
  @@ -1,6 +1,6 @@
   package org.apache.ojb.otm.lock.wait;
   
  -/* Copyright 2003-2004 The Apache Software Foundation
  +/* Copyright 2003-2005 The Apache Software Foundation
    *
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  
  
  
  1.6.2.1   +7 -6      db-ojb/src/java/org/apache/ojb/otm/lock/wait/TimeoutStrategy.java
  
  Index: TimeoutStrategy.java
  ===================================================================
  RCS file: /home/cvs/db-ojb/src/java/org/apache/ojb/otm/lock/wait/TimeoutStrategy.java,v
  retrieving revision 1.6
  retrieving revision 1.6.2.1
  diff -u -r1.6 -r1.6.2.1
  --- TimeoutStrategy.java	4 Apr 2004 23:53:41 -0000	1.6
  +++ TimeoutStrategy.java	21 Dec 2005 22:30:42 -0000	1.6.2.1
  @@ -1,11 +1,6 @@
   package org.apache.ojb.otm.lock.wait;
   
  -import java.util.HashMap;
  -import org.apache.ojb.otm.core.Transaction;
  -import org.apache.ojb.otm.lock.LockingException;
  -import org.apache.ojb.otm.lock.ObjectLock;
  -
  -/* Copyright 2003-2004 The Apache Software Foundation
  +/* Copyright 2003-2005 The Apache Software Foundation
    *
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  @@ -19,6 +14,12 @@
    * See the License for the specific language governing permissions and
    * limitations under the License.
    */
  +
  +import java.util.HashMap;
  +import org.apache.ojb.otm.core.Transaction;
  +import org.apache.ojb.otm.lock.LockingException;
  +import org.apache.ojb.otm.lock.ObjectLock;
  +
   public class TimeoutStrategy implements LockWaitStrategy
   {
   
  
  
  
  No                   revision
  No                   revision
  1.8.2.1   +1 -1      db-ojb/src/java/org/apache/ojb/otm/transaction/ManagedTransactionFactory.java
  
  Index: ManagedTransactionFactory.java
  ===================================================================
  RCS file: /home/cvs/db-ojb/src/java/org/apache/ojb/otm/transaction/ManagedTransactionFactory.java,v
  retrieving revision 1.8
  retrieving revision 1.8.2.1
  diff -u -r1.8 -r1.8.2.1
  --- ManagedTransactionFactory.java	3 May 2004 23:05:56 -0000	1.8
  +++ ManagedTransactionFactory.java	21 Dec 2005 22:30:42 -0000	1.8.2.1
  @@ -1,6 +1,6 @@
   package org.apache.ojb.otm.transaction;
   
  -/* Copyright 2003-2004 The Apache Software Foundation
  +/* Copyright 2003-2005 The Apache Software Foundation
    *
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  
  
  
  1.4.2.1   +4 -3      db-ojb/src/java/org/apache/ojb/otm/transaction/TransactionFactoryException.java
  
  Index: TransactionFactoryException.java
  ===================================================================
  RCS file: /home/cvs/db-ojb/src/java/org/apache/ojb/otm/transaction/TransactionFactoryException.java,v
  retrieving revision 1.4
  retrieving revision 1.4.2.1
  diff -u -r1.4 -r1.4.2.1
  --- TransactionFactoryException.java	4 Apr 2004 23:53:42 -0000	1.4
  +++ TransactionFactoryException.java	21 Dec 2005 22:30:42 -0000	1.4.2.1
  @@ -1,8 +1,6 @@
   package org.apache.ojb.otm.transaction;
   
  -import org.apache.ojb.otm.core.TransactionException;
  -
  -/* Copyright 2003-2004 The Apache Software Foundation
  +/* Copyright 2003-2005 The Apache Software Foundation
    *
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  @@ -16,6 +14,9 @@
    * See the License for the specific language governing permissions and
    * limitations under the License.
    */
  +
  +import org.apache.ojb.otm.core.TransactionException;
  +
   public class TransactionFactoryException extends TransactionException
   {
   
  
  
  
  1.5.2.1   +1 -1      db-ojb/src/java/org/apache/ojb/otm/transaction/TransactionFactory.java
  
  Index: TransactionFactory.java
  ===================================================================
  RCS file: /home/cvs/db-ojb/src/java/org/apache/ojb/otm/transaction/TransactionFactory.java,v
  retrieving revision 1.5
  retrieving revision 1.5.2.1
  diff -u -r1.5 -r1.5.2.1
  --- TransactionFactory.java	4 Apr 2004 23:53:42 -0000	1.5
  +++ TransactionFactory.java	21 Dec 2005 22:30:42 -0000	1.5.2.1
  @@ -1,6 +1,6 @@
   package org.apache.ojb.otm.transaction;
   
  -/* Copyright 2003-2004 The Apache Software Foundation
  +/* Copyright 2003-2005 The Apache Software Foundation
    *
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  
  
  
  1.10.2.1  +1 -1      db-ojb/src/java/org/apache/ojb/otm/transaction/LocalTransactionFactory.java
  
  Index: LocalTransactionFactory.java
  ===================================================================
  RCS file: /home/cvs/db-ojb/src/java/org/apache/ojb/otm/transaction/LocalTransactionFactory.java,v
  retrieving revision 1.10
  retrieving revision 1.10.2.1
  diff -u -r1.10 -r1.10.2.1
  --- LocalTransactionFactory.java	4 Apr 2004 23:53:42 -0000	1.10
  +++ LocalTransactionFactory.java	21 Dec 2005 22:30:42 -0000	1.10.2.1
  @@ -1,6 +1,6 @@
   package org.apache.ojb.otm.transaction;
   
  -/* Copyright 2003-2004 The Apache Software Foundation
  +/* Copyright 2003-2005 The Apache Software Foundation
    *
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  
  
  
  No                   revision
  No                   revision
  1.3.2.1   +1 -1      db-ojb/src/jca/org/apache/ojb/otm/connector/OTMConnectionEventListener.java
  
  Index: OTMConnectionEventListener.java
  ===================================================================
  RCS file: /home/cvs/db-ojb/src/jca/org/apache/ojb/otm/connector/OTMConnectionEventListener.java,v
  retrieving revision 1.3
  retrieving revision 1.3.2.1
  diff -u -r1.3 -r1.3.2.1
  --- OTMConnectionEventListener.java	5 Apr 2004 00:41:38 -0000	1.3
  +++ OTMConnectionEventListener.java	21 Dec 2005 22:30:43 -0000	1.3.2.1
  @@ -1,6 +1,6 @@
   package org.apache.ojb.otm.connector;
   
  -/* Copyright 2003-2004 The Apache Software Foundation
  +/* Copyright 2003-2005 The Apache Software Foundation
    *
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  
  
  
  1.3.2.1   +1 -1      db-ojb/src/jca/org/apache/ojb/otm/connector/OTMConnectionMetaData.java
  
  Index: OTMConnectionMetaData.java
  ===================================================================
  RCS file: /home/cvs/db-ojb/src/jca/org/apache/ojb/otm/connector/OTMConnectionMetaData.java,v
  retrieving revision 1.3
  retrieving revision 1.3.2.1
  diff -u -r1.3 -r1.3.2.1
  --- OTMConnectionMetaData.java	5 Apr 2004 00:41:38 -0000	1.3
  +++ OTMConnectionMetaData.java	21 Dec 2005 22:30:43 -0000	1.3.2.1
  @@ -1,6 +1,6 @@
   package org.apache.ojb.otm.connector;
   
  -/* Copyright 2003-2004 The Apache Software Foundation
  +/* Copyright 2003-2005 The Apache Software Foundation
    *
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  
  
  
  1.3.2.1   +1 -1      db-ojb/src/jca/org/apache/ojb/otm/connector/OTMConnectionRequestInfo.java
  
  Index: OTMConnectionRequestInfo.java
  ===================================================================
  RCS file: /home/cvs/db-ojb/src/jca/org/apache/ojb/otm/connector/OTMConnectionRequestInfo.java,v
  retrieving revision 1.3
  retrieving revision 1.3.2.1
  diff -u -r1.3 -r1.3.2.1
  --- OTMConnectionRequestInfo.java	5 Apr 2004 00:41:38 -0000	1.3
  +++ OTMConnectionRequestInfo.java	21 Dec 2005 22:30:43 -0000	1.3.2.1
  @@ -1,6 +1,6 @@
   package org.apache.ojb.otm.connector;
   
  -/* Copyright 2003-2004 The Apache Software Foundation
  +/* Copyright 2003-2005 The Apache Software Foundation
    *
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  
  
  
  1.4.2.1   +1 -1      db-ojb/src/jca/org/apache/ojb/otm/connector/JCAKit.java
  
  Index: JCAKit.java
  ===================================================================
  RCS file: /home/cvs/db-ojb/src/jca/org/apache/ojb/otm/connector/JCAKit.java,v
  retrieving revision 1.4
  retrieving revision 1.4.2.1
  diff -u -r1.4 -r1.4.2.1
  --- JCAKit.java	5 Apr 2004 00:41:38 -0000	1.4
  +++ JCAKit.java	21 Dec 2005 22:30:43 -0000	1.4.2.1
  @@ -1,6 +1,6 @@
   package org.apache.ojb.otm.connector;
   
  -/* Copyright 2003-2004 The Apache Software Foundation
  +/* Copyright 2003-2005 The Apache Software Foundation
    *
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  
  
  
  1.15.2.1  +1 -1      db-ojb/src/jca/org/apache/ojb/otm/connector/OTMJCAConnection.java
  
  Index: OTMJCAConnection.java
  ===================================================================
  RCS file: /home/cvs/db-ojb/src/jca/org/apache/ojb/otm/connector/OTMJCAConnection.java,v
  retrieving revision 1.15
  retrieving revision 1.15.2.1
  diff -u -r1.15 -r1.15.2.1
  --- OTMJCAConnection.java	12 Apr 2004 18:19:20 -0000	1.15
  +++ OTMJCAConnection.java	21 Dec 2005 22:30:43 -0000	1.15.2.1
  @@ -1,6 +1,6 @@
   package org.apache.ojb.otm.connector;
   
  -/* Copyright 2003-2004 The Apache Software Foundation
  +/* Copyright 2003-2005 The Apache Software Foundation
    *
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  
  
  
  1.7.2.1   +1 -1      db-ojb/src/jca/org/apache/ojb/otm/connector/OTMJCAManagedConnection.java
  
  Index: OTMJCAManagedConnection.java
  ===================================================================
  RCS file: /home/cvs/db-ojb/src/jca/org/apache/ojb/otm/connector/OTMJCAManagedConnection.java,v
  retrieving revision 1.7
  retrieving revision 1.7.2.1
  diff -u -r1.7 -r1.7.2.1
  --- OTMJCAManagedConnection.java	5 Apr 2004 00:41:39 -0000	1.7
  +++ OTMJCAManagedConnection.java	21 Dec 2005 22:30:43 -0000	1.7.2.1
  @@ -1,6 +1,6 @@
   package org.apache.ojb.otm.connector;
   
  -/* Copyright 2003-2004 The Apache Software Foundation
  +/* Copyright 2003-2005 The Apache Software Foundation
    *
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  
  
  
  1.4.2.1   +1 -1      db-ojb/src/jca/org/apache/ojb/otm/connector/OTMConnectionRuntimeException.java
  
  Index: OTMConnectionRuntimeException.java
  ===================================================================
  RCS file: /home/cvs/db-ojb/src/jca/org/apache/ojb/otm/connector/OTMConnectionRuntimeException.java,v
  retrieving revision 1.4
  retrieving revision 1.4.2.1
  diff -u -r1.4 -r1.4.2.1
  --- OTMConnectionRuntimeException.java	5 Apr 2004 00:41:39 -0000	1.4
  +++ OTMConnectionRuntimeException.java	21 Dec 2005 22:30:43 -0000	1.4.2.1
  @@ -2,7 +2,7 @@
   
   import org.apache.ojb.broker.OJBRuntimeException;
   
  -/* Copyright 2003-2004 The Apache Software Foundation
  +/* Copyright 2003-2005 The Apache Software Foundation
    *
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  
  
  
  1.3.2.1   +1 -1      db-ojb/src/jca/org/apache/ojb/otm/connector/OTMJCAManagedConnectionFactory.java
  
  Index: OTMJCAManagedConnectionFactory.java
  ===================================================================
  RCS file: /home/cvs/db-ojb/src/jca/org/apache/ojb/otm/connector/OTMJCAManagedConnectionFactory.java,v
  retrieving revision 1.3
  retrieving revision 1.3.2.1
  diff -u -r1.3 -r1.3.2.1
  --- OTMJCAManagedConnectionFactory.java	5 Apr 2004 00:41:39 -0000	1.3
  +++ OTMJCAManagedConnectionFactory.java	21 Dec 2005 22:30:43 -0000	1.3.2.1
  @@ -1,6 +1,6 @@
   package org.apache.ojb.otm.connector;
   
  -/* Copyright 2003-2004 The Apache Software Foundation
  +/* Copyright 2003-2005 The Apache Software Foundation
    *
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  
  
  
  1.3.2.1   +1 -1      db-ojb/src/jca/org/apache/ojb/otm/connector/Util.java
  
  Index: Util.java
  ===================================================================
  RCS file: /home/cvs/db-ojb/src/jca/org/apache/ojb/otm/connector/Util.java,v
  retrieving revision 1.3
  retrieving revision 1.3.2.1
  diff -u -r1.3 -r1.3.2.1
  --- Util.java	5 Apr 2004 00:41:39 -0000	1.3
  +++ Util.java	21 Dec 2005 22:30:43 -0000	1.3.2.1
  @@ -1,6 +1,6 @@
   package org.apache.ojb.otm.connector;
   
  -/* Copyright 2003-2004 The Apache Software Foundation
  +/* Copyright 2003-2005 The Apache Software Foundation
    *
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  
  
  
  1.3.2.1   +1 -1      db-ojb/src/jca/org/apache/ojb/otm/connector/OTMConnectionManager.java
  
  Index: OTMConnectionManager.java
  ===================================================================
  RCS file: /home/cvs/db-ojb/src/jca/org/apache/ojb/otm/connector/OTMConnectionManager.java,v
  retrieving revision 1.3
  retrieving revision 1.3.2.1
  diff -u -r1.3 -r1.3.2.1
  --- OTMConnectionManager.java	5 Apr 2004 00:41:38 -0000	1.3
  +++ OTMConnectionManager.java	21 Dec 2005 22:30:43 -0000	1.3.2.1
  @@ -1,6 +1,6 @@
   package org.apache.ojb.otm.connector;
   
  -/* Copyright 2003-2004 The Apache Software Foundation
  +/* Copyright 2003-2005 The Apache Software Foundation
    *
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  
  
  
  No                   revision
  No                   revision
  1.4.2.1   +1 -1      db-ojb/src/java/org/apache/ojb/otm/states/Transient.java
  
  Index: Transient.java
  ===================================================================
  RCS file: /home/cvs/db-ojb/src/java/org/apache/ojb/otm/states/Transient.java,v
  retrieving revision 1.4
  retrieving revision 1.4.2.1
  diff -u -r1.4 -r1.4.2.1
  --- Transient.java	4 Apr 2004 23:53:41 -0000	1.4
  +++ Transient.java	21 Dec 2005 22:30:44 -0000	1.4.2.1
  @@ -1,6 +1,6 @@
   package org.apache.ojb.otm.states;
   
  -/* Copyright 2003-2004 The Apache Software Foundation
  +/* Copyright 2003-2005 The Apache Software Foundation
    *
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  
  
  
  1.4.2.1   +1 -1      db-ojb/src/java/org/apache/ojb/otm/states/Hollow.java
  
  Index: Hollow.java
  ===================================================================
  RCS file: /home/cvs/db-ojb/src/java/org/apache/ojb/otm/states/Hollow.java,v
  retrieving revision 1.4
  retrieving revision 1.4.2.1
  diff -u -r1.4 -r1.4.2.1
  --- Hollow.java	4 Apr 2004 23:53:41 -0000	1.4
  +++ Hollow.java	21 Dec 2005 22:30:44 -0000	1.4.2.1
  @@ -1,6 +1,6 @@
   package org.apache.ojb.otm.states;
   
  -/* Copyright 2003-2004 The Apache Software Foundation
  +/* Copyright 2003-2005 The Apache Software Foundation
    *
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  
  
  
  1.4.2.1   +1 -1      db-ojb/src/java/org/apache/ojb/otm/states/PersistentDeleted.java
  
  Index: PersistentDeleted.java
  ===================================================================
  RCS file: /home/cvs/db-ojb/src/java/org/apache/ojb/otm/states/PersistentDeleted.java,v
  retrieving revision 1.4
  retrieving revision 1.4.2.1
  diff -u -r1.4 -r1.4.2.1
  --- PersistentDeleted.java	4 Apr 2004 23:53:41 -0000	1.4
  +++ PersistentDeleted.java	21 Dec 2005 22:30:44 -0000	1.4.2.1
  @@ -1,6 +1,6 @@
   package org.apache.ojb.otm.states;
   
  -/* Copyright 2003-2004 The Apache Software Foundation
  +/* Copyright 2003-2005 The Apache Software Foundation
    *
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  
  
  
  1.4.2.1   +1 -1      db-ojb/src/java/org/apache/ojb/otm/states/PersistentNewDeleted.java
  
  Index: PersistentNewDeleted.java
  ===================================================================
  RCS file: /home/cvs/db-ojb/src/java/org/apache/ojb/otm/states/PersistentNewDeleted.java,v
  retrieving revision 1.4
  retrieving revision 1.4.2.1
  diff -u -r1.4 -r1.4.2.1
  --- PersistentNewDeleted.java	4 Apr 2004 23:53:41 -0000	1.4
  +++ PersistentNewDeleted.java	21 Dec 2005 22:30:44 -0000	1.4.2.1
  @@ -1,6 +1,6 @@
   package org.apache.ojb.otm.states;
   
  -/* Copyright 2003-2004 The Apache Software Foundation
  +/* Copyright 2003-2005 The Apache Software Foundation
    *
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  
  
  
  1.4.2.1   +1 -1      db-ojb/src/java/org/apache/ojb/otm/states/PersistentDirty.java
  
  Index: PersistentDirty.java
  ===================================================================
  RCS file: /home/cvs/db-ojb/src/java/org/apache/ojb/otm/states/PersistentDirty.java,v
  retrieving revision 1.4
  retrieving revision 1.4.2.1
  diff -u -r1.4 -r1.4.2.1
  --- PersistentDirty.java	12 Apr 2004 16:32:42 -0000	1.4
  +++ PersistentDirty.java	21 Dec 2005 22:30:44 -0000	1.4.2.1
  @@ -1,6 +1,6 @@
   package org.apache.ojb.otm.states;
   
  -/* Copyright 2003-2004 The Apache Software Foundation
  +/* Copyright 2003-2005 The Apache Software Foundation
    *
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  
  
  
  1.5.2.1   +1 -1      db-ojb/src/java/org/apache/ojb/otm/states/State.java
  
  Index: State.java
  ===================================================================
  RCS file: /home/cvs/db-ojb/src/java/org/apache/ojb/otm/states/State.java,v
  retrieving revision 1.5
  retrieving revision 1.5.2.1
  diff -u -r1.5 -r1.5.2.1
  --- State.java	12 Apr 2004 16:32:42 -0000	1.5
  +++ State.java	21 Dec 2005 22:30:44 -0000	1.5.2.1
  @@ -1,6 +1,6 @@
   package org.apache.ojb.otm.states;
   
  -/* Copyright 2003-2004 The Apache Software Foundation
  +/* Copyright 2003-2005 The Apache Software Foundation
    *
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  
  
  
  1.3.2.1   +1 -1      db-ojb/src/java/org/apache/ojb/otm/states/PersistentClean.java
  
  Index: PersistentClean.java
  ===================================================================
  RCS file: /home/cvs/db-ojb/src/java/org/apache/ojb/otm/states/PersistentClean.java,v
  retrieving revision 1.3
  retrieving revision 1.3.2.1
  diff -u -r1.3 -r1.3.2.1
  --- PersistentClean.java	4 Apr 2004 23:53:41 -0000	1.3
  +++ PersistentClean.java	21 Dec 2005 22:30:44 -0000	1.3.2.1
  @@ -1,6 +1,6 @@
   package org.apache.ojb.otm.states;
   
  -/* Copyright 2003-2004 The Apache Software Foundation
  +/* Copyright 2003-2005 The Apache Software Foundation
    *
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  
  
  
  1.3.2.1   +1 -1      db-ojb/src/java/org/apache/ojb/otm/states/IllegalObjectStateException.java
  
  Index: IllegalObjectStateException.java
  ===================================================================
  RCS file: /home/cvs/db-ojb/src/java/org/apache/ojb/otm/states/IllegalObjectStateException.java,v
  retrieving revision 1.3
  retrieving revision 1.3.2.1
  diff -u -r1.3 -r1.3.2.1
  --- IllegalObjectStateException.java	4 Apr 2004 23:53:41 -0000	1.3
  +++ IllegalObjectStateException.java	21 Dec 2005 22:30:44 -0000	1.3.2.1
  @@ -1,6 +1,6 @@
   package org.apache.ojb.otm.states;
   
  -/* Copyright 2003-2004 The Apache Software Foundation
  +/* Copyright 2003-2005 The Apache Software Foundation
    *
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  
  
  
  1.3.2.1   +1 -1      db-ojb/src/java/org/apache/ojb/otm/states/PersistentNew.java
  
  Index: PersistentNew.java
  ===================================================================
  RCS file: /home/cvs/db-ojb/src/java/org/apache/ojb/otm/states/PersistentNew.java,v
  retrieving revision 1.3
  retrieving revision 1.3.2.1
  diff -u -r1.3 -r1.3.2.1
  --- PersistentNew.java	4 Apr 2004 23:53:41 -0000	1.3
  +++ PersistentNew.java	21 Dec 2005 22:30:44 -0000	1.3.2.1
  @@ -1,6 +1,6 @@
   package org.apache.ojb.otm.states;
   
  -/* Copyright 2003-2004 The Apache Software Foundation
  +/* Copyright 2003-2005 The Apache Software Foundation
    *
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  
  
  
  No                   revision
  No                   revision
  1.4.2.1   +117 -117  db-ojb/src/java/org/apache/ojb/soda/ConstraintImpl.java
  
  Index: ConstraintImpl.java
  ===================================================================
  RCS file: /home/cvs/db-ojb/src/java/org/apache/ojb/soda/ConstraintImpl.java,v
  retrieving revision 1.4
  retrieving revision 1.4.2.1
  diff -u -r1.4 -r1.4.2.1
  --- ConstraintImpl.java	4 Apr 2004 23:53:42 -0000	1.4
  +++ ConstraintImpl.java	21 Dec 2005 22:30:46 -0000	1.4.2.1
  @@ -1,6 +1,6 @@
  -package org.apache.ojb.soda;
  +package org.apache.ojb.soda;
   
  -/* Copyright 2002-2004 The Apache Software Foundation
  +/* Copyright 2002-2005 The Apache Software Foundation
    *
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  @@ -14,118 +14,118 @@
    * See the License for the specific language governing permissions and
    * limitations under the License.
    */
  -
  -import org.odbms.Constraint;
  -
  -/**
  - * @version 	1.0
  - * @author
  - */
  -public class ConstraintImpl implements Constraint
  -{
  -
  -    /**
  -     * Constructor for ConstraintImpl.
  -     */
  -    public ConstraintImpl()
  -    {
  -        super();
  -    }
  -
  -    /*
  -     * @see Constraint#and(Constraint)
  -     */
  -    public Constraint and(Constraint andWith)
  -    {
  -        return null;
  -    }
  -
  -    /*
  -     * @see Constraint#or(Constraint)
  -     */
  -    public Constraint or(Constraint orWith)
  -    {
  -        return null;
  -    }
  -
  -    /*
  -     * @see Constraint#equal()
  -     */
  -    public Constraint equal()
  -    {
  -        return null;
  -    }
  -
  -    /*
  -     * @see Constraint#greater()
  -     */
  -    public Constraint greater()
  -    {
  -        return null;
  -    }
  -
  -    /*
  -     * @see Constraint#greaterOrEqual()
  -     */
  -    public Constraint greaterOrEqual()
  -    {
  -        return null;
  -    }
  -
  -    /*
  -     * @see Constraint#smaller()
  -     */
  -    public Constraint smaller()
  -    {
  -        return null;
  -    }
  -
  -    /*
  -     * @see Constraint#smallerOrEqual()
  -     */
  -    public Constraint smallerOrEqual()
  -    {
  -        return null;
  -    }
  -
  -    /*
  -     * @see Constraint#identity()
  -     */
  -    public Constraint identity()
  -    {
  -        return null;
  -    }
  -
  -    /*
  -     * @see Constraint#like()
  -     */
  -    public Constraint like()
  -    {
  -        return null;
  -    }
  -
  -    /*
  -     * @see Constraint#contains()
  -     */
  -    public Constraint contains()
  -    {
  -        return null;
  -    }
  -
  -    /*
  -     * @see Constraint#is()
  -     */
  -    public Constraint is()
  -    {
  -        return null;
  -    }
  -
  -    /*
  -     * @see Constraint#not()
  -     */
  -    public Constraint not()
  -    {
  -        return null;
  -    }
  -
  -}
  +
  +import org.odbms.Constraint;
  +
  +/**
  + * @version 	1.0
  + * @author
  + */
  +public class ConstraintImpl implements Constraint
  +{
  +
  +    /**
  +     * Constructor for ConstraintImpl.
  +     */
  +    public ConstraintImpl()
  +    {
  +        super();
  +    }
  +
  +    /*
  +     * @see Constraint#and(Constraint)
  +     */
  +    public Constraint and(Constraint andWith)
  +    {
  +        return null;
  +    }
  +
  +    /*
  +     * @see Constraint#or(Constraint)
  +     */
  +    public Constraint or(Constraint orWith)
  +    {
  +        return null;
  +    }
  +
  +    /*
  +     * @see Constraint#equal()
  +     */
  +    public Constraint equal()
  +    {
  +        return null;
  +    }
  +
  +    /*
  +     * @see Constraint#greater()
  +     */
  +    public Constraint greater()
  +    {
  +        return null;
  +    }
  +
  +    /*
  +     * @see Constraint#greaterOrEqual()
  +     */
  +    public Constraint greaterOrEqual()
  +    {
  +        return null;
  +    }
  +
  +    /*
  +     * @see Constraint#smaller()
  +     */
  +    public Constraint smaller()
  +    {
  +        return null;
  +    }
  +
  +    /*
  +     * @see Constraint#smallerOrEqual()
  +     */
  +    public Constraint smallerOrEqual()
  +    {
  +        return null;
  +    }
  +
  +    /*
  +     * @see Constraint#identity()
  +     */
  +    public Constraint identity()
  +    {
  +        return null;
  +    }
  +
  +    /*
  +     * @see Constraint#like()
  +     */
  +    public Constraint like()
  +    {
  +        return null;
  +    }
  +
  +    /*
  +     * @see Constraint#contains()
  +     */
  +    public Constraint contains()
  +    {
  +        return null;
  +    }
  +
  +    /*
  +     * @see Constraint#is()
  +     */
  +    public Constraint is()
  +    {
  +        return null;
  +    }
  +
  +    /*
  +     * @see Constraint#not()
  +     */
  +    public Constraint not()
  +    {
  +        return null;
  +    }
  +
  +}
  
  
  
  1.5.2.1   +6 -6      db-ojb/src/java/org/apache/ojb/soda/ObjectContainerImpl.java
  
  Index: ObjectContainerImpl.java
  ===================================================================
  RCS file: /home/cvs/db-ojb/src/java/org/apache/ojb/soda/ObjectContainerImpl.java,v
  retrieving revision 1.5
  retrieving revision 1.5.2.1
  diff -u -r1.5 -r1.5.2.1
  --- ObjectContainerImpl.java	4 Apr 2004 23:53:42 -0000	1.5
  +++ ObjectContainerImpl.java	21 Dec 2005 22:30:46 -0000	1.5.2.1
  @@ -1,6 +1,6 @@
  -package org.apache.ojb.soda;
  +package org.apache.ojb.soda;
   
  -/* Copyright 2002-2004 The Apache Software Foundation
  +/* Copyright 2002-2005 The Apache Software Foundation
    *
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  @@ -17,7 +17,7 @@
   
   import org.odbms.ObjectContainer;
   import org.odbms.Query;
  -import org.apache.ojb.broker.PersistenceBroker;
  +import org.apache.ojb.broker.PersistenceBroker;
   /**
    * @author Thomas Mahler
    * @version $Id$
  @@ -34,7 +34,7 @@
       public static ObjectContainer getInstance(PersistenceBroker broker)
   	{
   	    return new ObjectContainerImpl(broker);
  -	}
  +	}
       /*
        * @see ObjectContainer#query()
        */
  @@ -42,4 +42,4 @@
       {
           return new QueryImpl(broker);
       }
  -}
  +}
  
  
  
  1.7.2.1   +2 -2      db-ojb/src/java/org/apache/ojb/soda/QueryImpl.java
  
  Index: QueryImpl.java
  ===================================================================
  RCS file: /home/cvs/db-ojb/src/java/org/apache/ojb/soda/QueryImpl.java,v
  retrieving revision 1.7
  retrieving revision 1.7.2.1
  diff -u -r1.7 -r1.7.2.1
  --- QueryImpl.java	4 Apr 2004 23:53:42 -0000	1.7
  +++ QueryImpl.java	21 Dec 2005 22:30:46 -0000	1.7.2.1
  @@ -1,6 +1,6 @@
   package org.apache.ojb.soda;
   
  -/* Copyright 2002-2004 The Apache Software Foundation
  +/* Copyright 2002-2005 The Apache Software Foundation
    *
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  
  
  
  1.8.2.1   +2 -2      db-ojb/src/java/org/apache/ojb/soda/ObjectSetImpl.java
  
  Index: ObjectSetImpl.java
  ===================================================================
  RCS file: /home/cvs/db-ojb/src/java/org/apache/ojb/soda/ObjectSetImpl.java,v
  retrieving revision 1.8
  retrieving revision 1.8.2.1
  diff -u -r1.8 -r1.8.2.1
  --- ObjectSetImpl.java	4 Apr 2004 23:53:42 -0000	1.8
  +++ ObjectSetImpl.java	21 Dec 2005 22:30:46 -0000	1.8.2.1
  @@ -1,6 +1,6 @@
   package org.apache.ojb.soda;
   
  -/* Copyright 2002-2004 The Apache Software Foundation
  +/* Copyright 2002-2005 The Apache Software Foundation
    *
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  
  
  
  No                   revision
  No                   revision
  1.2.2.1   +26 -26    db-ojb/src/java/org/odmg/DArray.java
  
  Index: DArray.java
  ===================================================================
  RCS file: /home/cvs/db-ojb/src/java/org/odmg/DArray.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- DArray.java	11 Mar 2004 18:16:25 -0000	1.2
  +++ DArray.java	21 Dec 2005 22:30:47 -0000	1.2.2.1
  @@ -1,6 +1,6 @@
  -package org.odmg;
  +package org.odmg;
   
  -/* Copyright  2004 The Apache Software Foundation
  +/* Copyright 2004-2005 The Apache Software Foundation
    *
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  @@ -14,27 +14,27 @@
    * See the License for the specific language governing permissions and
    * limitations under the License.
    */
  -
  -
  -/**
  - * The interface that defines the operations of an ODMG array.
  - * Nearly all of its operations are defined by the JavaSoft <code>List</code> interface.
  - * All of the operations defined by the JavaSoft <code>List</code>
  - * interface are supported by an ODMG implementation of <code>DArray</code>,
  - * the exception <code>UnsupportedOperationException</code> is not thrown when a
  - * call is made to any of the <code>List</code> methods.
  - * An instance of a class implementing this interface can be obtained
  - * by calling the method <code>Implementation.newDArray</code>.
  - * @author	David Jordan (as Java Editor of the Object Data Management Group)
  - * @version ODMG 3.0
  - */
  -// @see java.lang.UnsupportedOperationException
  -
  -public interface DArray extends org.odmg.DCollection, java.util.List
  -{
  -    /**
  -     * Resize the array to have <code>newSize</code> elements.
  -     * @param	newSize	The new size of the array.
  -     */
  -    public void resize(int newSize);
  -}
  +
  +
  +/**
  + * The interface that defines the operations of an ODMG array.
  + * Nearly all of its operations are defined by the JavaSoft <code>List</code> interface.
  + * All of the operations defined by the JavaSoft <code>List</code>
  + * interface are supported by an ODMG implementation of <code>DArray</code>,
  + * the exception <code>UnsupportedOperationException</code> is not thrown when a
  + * call is made to any of the <code>List</code> methods.
  + * An instance of a class implementing this interface can be obtained
  + * by calling the method <code>Implementation.newDArray</code>.
  + * @author	David Jordan (as Java Editor of the Object Data Management Group)
  + * @version ODMG 3.0
  + */
  +// @see java.lang.UnsupportedOperationException
  +
  +public interface DArray extends org.odmg.DCollection, java.util.List
  +{
  +    /**
  +     * Resize the array to have <code>newSize</code> elements.
  +     * @param	newSize	The new size of the array.
  +     */
  +    public void resize(int newSize);
  +}
  
  
  
  No                   revision
  No                   revision
  1.3.2.1   +1 -1      db-ojb/src/java/org/odbms/Query.java
  
  Index: Query.java
  ===================================================================
  RCS file: /home/cvs/db-ojb/src/java/org/odbms/Query.java,v
  retrieving revision 1.3
  retrieving revision 1.3.2.1
  diff -u -r1.3 -r1.3.2.1
  --- Query.java	5 Apr 2004 12:16:25 -0000	1.3
  +++ Query.java	21 Dec 2005 22:30:48 -0000	1.3.2.1
  @@ -1,6 +1,6 @@
   package  org.odbms;
   
  -/* Copyright 2002-2004 The Apache Software Foundation
  +/* Copyright 2002-2005 The Apache Software Foundation
    *
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  
  
  
  1.3.2.1   +1 -1      db-ojb/src/java/org/odbms/ObjectSet.java
  
  Index: ObjectSet.java
  ===================================================================
  RCS file: /home/cvs/db-ojb/src/java/org/odbms/ObjectSet.java,v
  retrieving revision 1.3
  retrieving revision 1.3.2.1
  diff -u -r1.3 -r1.3.2.1
  --- ObjectSet.java	5 Apr 2004 12:16:25 -0000	1.3
  +++ ObjectSet.java	21 Dec 2005 22:30:48 -0000	1.3.2.1
  @@ -1,6 +1,6 @@
   package  org.odbms;
   
  -/* Copyright 2002-2004 The Apache Software Foundation
  +/* Copyright 2002-2005 The Apache Software Foundation
    *
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  
  
  
  1.3.2.1   +1 -1      db-ojb/src/java/org/odbms/Constraint.java
  
  Index: Constraint.java
  ===================================================================
  RCS file: /home/cvs/db-ojb/src/java/org/odbms/Constraint.java,v
  retrieving revision 1.3
  retrieving revision 1.3.2.1
  diff -u -r1.3 -r1.3.2.1
  --- Constraint.java	5 Apr 2004 12:16:25 -0000	1.3
  +++ Constraint.java	21 Dec 2005 22:30:48 -0000	1.3.2.1
  @@ -1,6 +1,6 @@
   package  org.odbms;
   
  -/* Copyright 2002-2004 The Apache Software Foundation
  +/* Copyright 2002-2005 The Apache Software Foundation
    *
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  
  
  
  1.4.2.1   +1 -1      db-ojb/src/java/org/odbms/ObjectContainer.java
  
  Index: ObjectContainer.java
  ===================================================================
  RCS file: /home/cvs/db-ojb/src/java/org/odbms/ObjectContainer.java,v
  retrieving revision 1.4
  retrieving revision 1.4.2.1
  diff -u -r1.4 -r1.4.2.1
  --- ObjectContainer.java	5 Apr 2004 12:16:25 -0000	1.4
  +++ ObjectContainer.java	21 Dec 2005 22:30:48 -0000	1.4.2.1
  @@ -1,6 +1,6 @@
   package org.odbms;
   
  -/* Copyright 2002-2004 The Apache Software Foundation
  +/* Copyright 2002-2005 The Apache Software Foundation
    *
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  
  
  
  No                   revision
  No                   revision
  1.10.2.1  +15 -14    db-ojb/src/java/org/apache/ojb/otm/swizzle/CopySwizzling.java
  
  Index: CopySwizzling.java
  ===================================================================
  RCS file: /home/cvs/db-ojb/src/java/org/apache/ojb/otm/swizzle/CopySwizzling.java,v
  retrieving revision 1.10
  retrieving revision 1.10.2.1
  diff -u -r1.10 -r1.10.2.1
  --- CopySwizzling.java	12 Apr 2004 16:32:42 -0000	1.10
  +++ CopySwizzling.java	21 Dec 2005 22:30:48 -0000	1.10.2.1
  @@ -1,5 +1,20 @@
   package org.apache.ojb.otm.swizzle;
   
  +/* Copyright 2003-2005 The Apache Software Foundation
  + *
  + * Licensed under the Apache License, Version 2.0 (the "License");
  + * you may not use this file except in compliance with the License.
  + * You may obtain a copy of the License at
  + *
  + *     http://www.apache.org/licenses/LICENSE-2.0
  + *
  + * Unless required by applicable law or agreed to in writing, software
  + * distributed under the License is distributed on an "AS IS" BASIS,
  + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  + * See the License for the specific language governing permissions and
  + * limitations under the License.
  + */
  +
   import java.lang.reflect.Array;
   import java.util.Collection;
   import java.util.Iterator;
  @@ -17,20 +32,6 @@
   import org.apache.ojb.broker.metadata.ObjectReferenceDescriptor;
   import org.apache.ojb.broker.metadata.fieldaccess.PersistentField;
   
  -/* Copyright 2003-2004 The Apache Software Foundation
  - *
  - * Licensed under the Apache License, Version 2.0 (the "License");
  - * you may not use this file except in compliance with the License.
  - * You may obtain a copy of the License at
  - *
  - *     http://www.apache.org/licenses/LICENSE-2.0
  - *
  - * Unless required by applicable law or agreed to in writing, software
  - * distributed under the License is distributed on an "AS IS" BASIS,
  - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  - * See the License for the specific language governing permissions and
  - * limitations under the License.
  - */
   public class CopySwizzling implements Swizzling
   {
   
  
  
  
  1.6.2.1   +5 -4      db-ojb/src/java/org/apache/ojb/otm/swizzle/NoSwizzling.java
  
  Index: NoSwizzling.java
  ===================================================================
  RCS file: /home/cvs/db-ojb/src/java/org/apache/ojb/otm/swizzle/NoSwizzling.java,v
  retrieving revision 1.6
  retrieving revision 1.6.2.1
  diff -u -r1.6 -r1.6.2.1
  --- NoSwizzling.java	4 Apr 2004 23:53:42 -0000	1.6
  +++ NoSwizzling.java	21 Dec 2005 22:30:48 -0000	1.6.2.1
  @@ -1,9 +1,6 @@
   package org.apache.ojb.otm.swizzle;
   
  -import org.apache.ojb.broker.PersistenceBroker;
  -import org.apache.ojb.broker.cache.ObjectCache;
  -
  -/* Copyright 2003-2004 The Apache Software Foundation
  +/* Copyright 2003-2005 The Apache Software Foundation
    *
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  @@ -17,6 +14,10 @@
    * See the License for the specific language governing permissions and
    * limitations under the License.
    */
  +
  +import org.apache.ojb.broker.PersistenceBroker;
  +import org.apache.ojb.broker.cache.ObjectCache;
  +
   public class NoSwizzling implements Swizzling
   {
   
  
  
  
  1.9.2.1   +5 -4      db-ojb/src/java/org/apache/ojb/otm/swizzle/Swizzling.java
  
  Index: Swizzling.java
  ===================================================================
  RCS file: /home/cvs/db-ojb/src/java/org/apache/ojb/otm/swizzle/Swizzling.java,v
  retrieving revision 1.9
  retrieving revision 1.9.2.1
  diff -u -r1.9 -r1.9.2.1
  --- Swizzling.java	12 Apr 2004 16:32:42 -0000	1.9
  +++ Swizzling.java	21 Dec 2005 22:30:48 -0000	1.9.2.1
  @@ -1,9 +1,6 @@
   package org.apache.ojb.otm.swizzle;
   
  -import org.apache.ojb.broker.PersistenceBroker;
  -import org.apache.ojb.broker.cache.ObjectCache;
  -
  -/* Copyright 2003-2004 The Apache Software Foundation
  +/* Copyright 2003-2005 The Apache Software Foundation
    *
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  @@ -18,6 +15,10 @@
    * limitations under the License.
    */
   
  +
  +import org.apache.ojb.broker.PersistenceBroker;
  +import org.apache.ojb.broker.cache.ObjectCache;
  +
   /**
    * @todo document
    */
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: ojb-dev-unsubscribe@db.apache.org
For additional commands, e-mail: ojb-dev-help@db.apache.org