diff --git a/COPYING b/COPYING new file mode 100644 index 0000000..fc8a5de --- /dev/null +++ b/COPYING @@ -0,0 +1,165 @@ + GNU LESSER GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + + This version of the GNU Lesser General Public License incorporates +the terms and conditions of version 3 of the GNU General Public +License, supplemented by the additional permissions listed below. + + 0. Additional Definitions. + + As used herein, "this License" refers to version 3 of the GNU Lesser +General Public License, and the "GNU GPL" refers to version 3 of the GNU +General Public License. + + "The Library" refers to a covered work governed by this License, +other than an Application or a Combined Work as defined below. + + An "Application" is any work that makes use of an interface provided +by the Library, but which is not otherwise based on the Library. +Defining a subclass of a class defined by the Library is deemed a mode +of using an interface provided by the Library. + + A "Combined Work" is a work produced by combining or linking an +Application with the Library. The particular version of the Library +with which the Combined Work was made is also called the "Linked +Version". + + The "Minimal Corresponding Source" for a Combined Work means the +Corresponding Source for the Combined Work, excluding any source code +for portions of the Combined Work that, considered in isolation, are +based on the Application, and not on the Linked Version. + + The "Corresponding Application Code" for a Combined Work means the +object code and/or source code for the Application, including any data +and utility programs needed for reproducing the Combined Work from the +Application, but excluding the System Libraries of the Combined Work. + + 1. Exception to Section 3 of the GNU GPL. + + You may convey a covered work under sections 3 and 4 of this License +without being bound by section 3 of the GNU GPL. + + 2. Conveying Modified Versions. + + If you modify a copy of the Library, and, in your modifications, a +facility refers to a function or data to be supplied by an Application +that uses the facility (other than as an argument passed when the +facility is invoked), then you may convey a copy of the modified +version: + + a) under this License, provided that you make a good faith effort to + ensure that, in the event an Application does not supply the + function or data, the facility still operates, and performs + whatever part of its purpose remains meaningful, or + + b) under the GNU GPL, with none of the additional permissions of + this License applicable to that copy. + + 3. Object Code Incorporating Material from Library Header Files. + + The object code form of an Application may incorporate material from +a header file that is part of the Library. You may convey such object +code under terms of your choice, provided that, if the incorporated +material is not limited to numerical parameters, data structure +layouts and accessors, or small macros, inline functions and templates +(ten or fewer lines in length), you do both of the following: + + a) Give prominent notice with each copy of the object code that the + Library is used in it and that the Library and its use are + covered by this License. + + b) Accompany the object code with a copy of the GNU GPL and this license + document. + + 4. Combined Works. + + You may convey a Combined Work under terms of your choice that, +taken together, effectively do not restrict modification of the +portions of the Library contained in the Combined Work and reverse +engineering for debugging such modifications, if you also do each of +the following: + + a) Give prominent notice with each copy of the Combined Work that + the Library is used in it and that the Library and its use are + covered by this License. + + b) Accompany the Combined Work with a copy of the GNU GPL and this license + document. + + c) For a Combined Work that displays copyright notices during + execution, include the copyright notice for the Library among + these notices, as well as a reference directing the user to the + copies of the GNU GPL and this license document. + + d) Do one of the following: + + 0) Convey the Minimal Corresponding Source under the terms of this + License, and the Corresponding Application Code in a form + suitable for, and under terms that permit, the user to + recombine or relink the Application with a modified version of + the Linked Version to produce a modified Combined Work, in the + manner specified by section 6 of the GNU GPL for conveying + Corresponding Source. + + 1) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (a) uses at run time + a copy of the Library already present on the user's computer + system, and (b) will operate properly with a modified version + of the Library that is interface-compatible with the Linked + Version. + + e) Provide Installation Information, but only if you would otherwise + be required to provide such information under section 6 of the + GNU GPL, and only to the extent that such information is + necessary to install and execute a modified version of the + Combined Work produced by recombining or relinking the + Application with a modified version of the Linked Version. (If + you use option 4d0, the Installation Information must accompany + the Minimal Corresponding Source and Corresponding Application + Code. If you use option 4d1, you must provide the Installation + Information in the manner specified by section 6 of the GNU GPL + for conveying Corresponding Source.) + + 5. Combined Libraries. + + You may place library facilities that are a work based on the +Library side by side in a single library together with other library +facilities that are not Applications and are not covered by this +License, and convey such a combined library under terms of your +choice, if you do both of the following: + + a) Accompany the combined library with a copy of the same work based + on the Library, uncombined with any other library facilities, + conveyed under the terms of this License. + + b) Give prominent notice with the combined library that part of it + is a work based on the Library, and explaining where to find the + accompanying uncombined form of the same work. + + 6. Revised Versions of the GNU Lesser General Public License. + + The Free Software Foundation may publish revised and/or new versions +of the GNU Lesser General Public License from time to time. Such new +versions will be similar in spirit to the present version, but may +differ in detail to address new problems or concerns. + + Each version is given a distinguishing version number. If the +Library as you received it specifies that a certain numbered version +of the GNU Lesser General Public License "or any later version" +applies to it, you have the option of following the terms and +conditions either of that published version or of any later version +published by the Free Software Foundation. If the Library as you +received it does not specify a version number of the GNU Lesser +General Public License, you may choose any version of the GNU Lesser +General Public License ever published by the Free Software Foundation. + + If the Library as you received it specifies that a proxy can decide +whether future versions of the GNU Lesser General Public License shall +apply, that proxy's public statement of acceptance of any version is +permanent authorization for you to choose that version for the +Library. diff --git a/lib/SOURCE_HEADER b/lib/SOURCE_HEADER new file mode 100644 index 0000000..690d570 --- /dev/null +++ b/lib/SOURCE_HEADER @@ -0,0 +1,20 @@ +// +// $Id$ +// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// +// This library is free software; you can redistribute it and/or modify it +// under the terms of the GNU Lesser General Public License as published +// by the Free Software Foundation; either version 2.1 of the License, or +// (at your option) any later version. +// +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + diff --git a/src/java/com/samskivert/depot/BindVisitor.java b/src/java/com/samskivert/depot/BindVisitor.java index 2ffc1e0..2ed1804 100644 --- a/src/java/com/samskivert/depot/BindVisitor.java +++ b/src/java/com/samskivert/depot/BindVisitor.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006-2007 Michael Bayne, Pär Winzell -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/BuildVisitor.java b/src/java/com/samskivert/depot/BuildVisitor.java index 8c9b419..c332ee1 100644 --- a/src/java/com/samskivert/depot/BuildVisitor.java +++ b/src/java/com/samskivert/depot/BuildVisitor.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006-2007 Michael Bayne, Pär Winzell -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/ByteEnum.java b/src/java/com/samskivert/depot/ByteEnum.java index a2d5643..32fd88d 100644 --- a/src/java/com/samskivert/depot/ByteEnum.java +++ b/src/java/com/samskivert/depot/ByteEnum.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006-2007 Michael Bayne, Pär Winzell -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/CacheAdapter.java b/src/java/com/samskivert/depot/CacheAdapter.java index 7cfd785..609ba21 100644 --- a/src/java/com/samskivert/depot/CacheAdapter.java +++ b/src/java/com/samskivert/depot/CacheAdapter.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006-2007 Michael Bayne, Pär Winzell -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/CacheInvalidator.java b/src/java/com/samskivert/depot/CacheInvalidator.java index 4ba08a7..5bb4c12 100644 --- a/src/java/com/samskivert/depot/CacheInvalidator.java +++ b/src/java/com/samskivert/depot/CacheInvalidator.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006-2007 Michael Bayne, Pär Winzell -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/CacheKey.java b/src/java/com/samskivert/depot/CacheKey.java index e568643..2ad7fbf 100644 --- a/src/java/com/samskivert/depot/CacheKey.java +++ b/src/java/com/samskivert/depot/CacheKey.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006-2007 Michael Bayne, Pär Winzell -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/DataMigration.java b/src/java/com/samskivert/depot/DataMigration.java index 87c1644..14d9065 100644 --- a/src/java/com/samskivert/depot/DataMigration.java +++ b/src/java/com/samskivert/depot/DataMigration.java @@ -1,8 +1,8 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2001-2008 Michael Bayne +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell // // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published diff --git a/src/java/com/samskivert/depot/DatabaseException.java b/src/java/com/samskivert/depot/DatabaseException.java index fc55dbe..a376c5b 100644 --- a/src/java/com/samskivert/depot/DatabaseException.java +++ b/src/java/com/samskivert/depot/DatabaseException.java @@ -1,8 +1,8 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2001-2008 Michael Bayne +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell // // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published diff --git a/src/java/com/samskivert/depot/DepotMarshaller.java b/src/java/com/samskivert/depot/DepotMarshaller.java index 0d7f185..3b843fc 100644 --- a/src/java/com/samskivert/depot/DepotMarshaller.java +++ b/src/java/com/samskivert/depot/DepotMarshaller.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006-2007 Michael Bayne, Pär Winzell -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/DepotMigrationHistoryRecord.java b/src/java/com/samskivert/depot/DepotMigrationHistoryRecord.java index d6b1813..302608c 100644 --- a/src/java/com/samskivert/depot/DepotMigrationHistoryRecord.java +++ b/src/java/com/samskivert/depot/DepotMigrationHistoryRecord.java @@ -1,8 +1,8 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2001-2008 Michael Bayne +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell // // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published diff --git a/src/java/com/samskivert/depot/DepotRepository.java b/src/java/com/samskivert/depot/DepotRepository.java index 7bc2394..9c34839 100644 --- a/src/java/com/samskivert/depot/DepotRepository.java +++ b/src/java/com/samskivert/depot/DepotRepository.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006-2007 Michael Bayne, Pär Winzell -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/DepotTypes.java b/src/java/com/samskivert/depot/DepotTypes.java index 9531e59..0ee6125 100644 --- a/src/java/com/samskivert/depot/DepotTypes.java +++ b/src/java/com/samskivert/depot/DepotTypes.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006-2007 Michael Bayne, Pär Winzell -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/DuplicateKeyException.java b/src/java/com/samskivert/depot/DuplicateKeyException.java index ddb53d3..0bf4cab 100644 --- a/src/java/com/samskivert/depot/DuplicateKeyException.java +++ b/src/java/com/samskivert/depot/DuplicateKeyException.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2001-2008 Michael Bayne -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/EHCacheAdapter.java b/src/java/com/samskivert/depot/EHCacheAdapter.java index f966da7..765cd37 100644 --- a/src/java/com/samskivert/depot/EHCacheAdapter.java +++ b/src/java/com/samskivert/depot/EHCacheAdapter.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006-2007 Michael Bayne, Pär Winzell -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/FieldMarshaller.java b/src/java/com/samskivert/depot/FieldMarshaller.java index 073b122..1f6c45f 100644 --- a/src/java/com/samskivert/depot/FieldMarshaller.java +++ b/src/java/com/samskivert/depot/FieldMarshaller.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006-2007 Michael Bayne, Pär Winzell -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/FindAllQuery.java b/src/java/com/samskivert/depot/FindAllQuery.java index 642249f..ccc2950 100644 --- a/src/java/com/samskivert/depot/FindAllQuery.java +++ b/src/java/com/samskivert/depot/FindAllQuery.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006-2007 Michael Bayne, Pär Winzell -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/FindOneQuery.java b/src/java/com/samskivert/depot/FindOneQuery.java index 187ad99..d88d0d3 100644 --- a/src/java/com/samskivert/depot/FindOneQuery.java +++ b/src/java/com/samskivert/depot/FindOneQuery.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006-2007 Michael Bayne, Pär Winzell -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/IdentityValueGenerator.java b/src/java/com/samskivert/depot/IdentityValueGenerator.java index 1220358..30c5694 100644 --- a/src/java/com/samskivert/depot/IdentityValueGenerator.java +++ b/src/java/com/samskivert/depot/IdentityValueGenerator.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006-2007 Michael Bayne, Pär Winzell -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/Key.java b/src/java/com/samskivert/depot/Key.java index 2c25ba2..04b5dca 100644 --- a/src/java/com/samskivert/depot/Key.java +++ b/src/java/com/samskivert/depot/Key.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006-2007 Michael Bayne, Pär Winzell -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/KeySet.java b/src/java/com/samskivert/depot/KeySet.java index 324e6c0..42873d6 100644 --- a/src/java/com/samskivert/depot/KeySet.java +++ b/src/java/com/samskivert/depot/KeySet.java @@ -1,8 +1,8 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2001-2008 Michael Bayne +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell // // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published diff --git a/src/java/com/samskivert/depot/KeyUtil.java b/src/java/com/samskivert/depot/KeyUtil.java index 22e56c7..a0fc85c 100644 --- a/src/java/com/samskivert/depot/KeyUtil.java +++ b/src/java/com/samskivert/depot/KeyUtil.java @@ -1,8 +1,8 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2001-2008 Michael Bayne +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell // // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published diff --git a/src/java/com/samskivert/depot/Log.java b/src/java/com/samskivert/depot/Log.java index 459b657..5b5e0d6 100644 --- a/src/java/com/samskivert/depot/Log.java +++ b/src/java/com/samskivert/depot/Log.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006-2007 Michael Bayne, Pär Winzell -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/Modifier.java b/src/java/com/samskivert/depot/Modifier.java index e575b7c..e1dbaa6 100644 --- a/src/java/com/samskivert/depot/Modifier.java +++ b/src/java/com/samskivert/depot/Modifier.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006-2007 Michael Bayne, Pär Winzell -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/MultiKey.java b/src/java/com/samskivert/depot/MultiKey.java index c3de3d9..01c5300 100644 --- a/src/java/com/samskivert/depot/MultiKey.java +++ b/src/java/com/samskivert/depot/MultiKey.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006-2007 Michael Bayne, Pär Winzell -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/MySQLBuilder.java b/src/java/com/samskivert/depot/MySQLBuilder.java index 368d35a..a26b5d8 100644 --- a/src/java/com/samskivert/depot/MySQLBuilder.java +++ b/src/java/com/samskivert/depot/MySQLBuilder.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006 Michael Bayne, Pär Winzell -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/Operation.java b/src/java/com/samskivert/depot/Operation.java index a3f097c..d79b9c1 100644 --- a/src/java/com/samskivert/depot/Operation.java +++ b/src/java/com/samskivert/depot/Operation.java @@ -1,8 +1,8 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2001-2008 Michael Bayne +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell // // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published diff --git a/src/java/com/samskivert/depot/PersistenceContext.java b/src/java/com/samskivert/depot/PersistenceContext.java index e762f50..9841402 100644 --- a/src/java/com/samskivert/depot/PersistenceContext.java +++ b/src/java/com/samskivert/depot/PersistenceContext.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006-2007 Michael Bayne, Pär Winzell -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/PersistentRecord.java b/src/java/com/samskivert/depot/PersistentRecord.java index 688366a..0341943 100644 --- a/src/java/com/samskivert/depot/PersistentRecord.java +++ b/src/java/com/samskivert/depot/PersistentRecord.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006-2007 Michael Bayne, Pär Winzell -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/PostgreSQLBuilder.java b/src/java/com/samskivert/depot/PostgreSQLBuilder.java index 202dd13..fcf5a8c 100644 --- a/src/java/com/samskivert/depot/PostgreSQLBuilder.java +++ b/src/java/com/samskivert/depot/PostgreSQLBuilder.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006 Michael Bayne, Pär Winzell -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/Query.java b/src/java/com/samskivert/depot/Query.java index 52ad1a1..7df2559 100644 --- a/src/java/com/samskivert/depot/Query.java +++ b/src/java/com/samskivert/depot/Query.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006-2007 Michael Bayne, Pär Winzell -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/SQLBuilder.java b/src/java/com/samskivert/depot/SQLBuilder.java index ff3993c..26df08b 100644 --- a/src/java/com/samskivert/depot/SQLBuilder.java +++ b/src/java/com/samskivert/depot/SQLBuilder.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006-2007 Michael Bayne, Pär Winzell -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/SchemaMigration.java b/src/java/com/samskivert/depot/SchemaMigration.java index 946a52a..c51f476 100644 --- a/src/java/com/samskivert/depot/SchemaMigration.java +++ b/src/java/com/samskivert/depot/SchemaMigration.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006-2007 Michael Bayne, Pär Winzell -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/SimpleCacheKey.java b/src/java/com/samskivert/depot/SimpleCacheKey.java index f17d02b..cc076d8 100644 --- a/src/java/com/samskivert/depot/SimpleCacheKey.java +++ b/src/java/com/samskivert/depot/SimpleCacheKey.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006-2007 Michael Bayne, Pär Winzell -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/TableValueGenerator.java b/src/java/com/samskivert/depot/TableValueGenerator.java index 345f71c..f28b4fb 100644 --- a/src/java/com/samskivert/depot/TableValueGenerator.java +++ b/src/java/com/samskivert/depot/TableValueGenerator.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006-2007 Michael Bayne, Pär Winzell -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/ValidatingCacheInvalidator.java b/src/java/com/samskivert/depot/ValidatingCacheInvalidator.java index f24a8ea..354486e 100644 --- a/src/java/com/samskivert/depot/ValidatingCacheInvalidator.java +++ b/src/java/com/samskivert/depot/ValidatingCacheInvalidator.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2001-2007 Michael Bayne -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/ValueGenerator.java b/src/java/com/samskivert/depot/ValueGenerator.java index 83e3b3c..59577b4 100644 --- a/src/java/com/samskivert/depot/ValueGenerator.java +++ b/src/java/com/samskivert/depot/ValueGenerator.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006-2007 Michael Bayne, Pär Winzell -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/WhereClause.java b/src/java/com/samskivert/depot/WhereClause.java index c3f880d..ff76ec5 100644 --- a/src/java/com/samskivert/depot/WhereClause.java +++ b/src/java/com/samskivert/depot/WhereClause.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006-2007 Michael Bayne, Pär Winzell -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/annotation/Column.java b/src/java/com/samskivert/depot/annotation/Column.java index 18072ca..44aaf87 100644 --- a/src/java/com/samskivert/depot/annotation/Column.java +++ b/src/java/com/samskivert/depot/annotation/Column.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006-2007 Michael Bayne, Pär Winzell -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/annotation/Computed.java b/src/java/com/samskivert/depot/annotation/Computed.java index 08e135a..6030f2e 100644 --- a/src/java/com/samskivert/depot/annotation/Computed.java +++ b/src/java/com/samskivert/depot/annotation/Computed.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006-2007 Michael Bayne, Pär Winzell -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/annotation/Entity.java b/src/java/com/samskivert/depot/annotation/Entity.java index 86469e2..f6d61b7 100644 --- a/src/java/com/samskivert/depot/annotation/Entity.java +++ b/src/java/com/samskivert/depot/annotation/Entity.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006-2007 Michael Bayne, Pär Winzell -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/annotation/FullTextIndex.java b/src/java/com/samskivert/depot/annotation/FullTextIndex.java index 198aafa..59df80c 100644 --- a/src/java/com/samskivert/depot/annotation/FullTextIndex.java +++ b/src/java/com/samskivert/depot/annotation/FullTextIndex.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2007 Michael Bayne, Pär Winzell -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/annotation/GeneratedValue.java b/src/java/com/samskivert/depot/annotation/GeneratedValue.java index b6e958a..2371452 100644 --- a/src/java/com/samskivert/depot/annotation/GeneratedValue.java +++ b/src/java/com/samskivert/depot/annotation/GeneratedValue.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006-2007 Michael Bayne, Pär Winzell -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/annotation/GenerationType.java b/src/java/com/samskivert/depot/annotation/GenerationType.java index dcdf174..1764006 100644 --- a/src/java/com/samskivert/depot/annotation/GenerationType.java +++ b/src/java/com/samskivert/depot/annotation/GenerationType.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006-2007 Michael Bayne, Pär Winzell -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/annotation/Id.java b/src/java/com/samskivert/depot/annotation/Id.java index e6629c6..f1b418f 100644 --- a/src/java/com/samskivert/depot/annotation/Id.java +++ b/src/java/com/samskivert/depot/annotation/Id.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006-2007 Michael Bayne, Pär Winzell -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/annotation/Index.java b/src/java/com/samskivert/depot/annotation/Index.java index f7f32b7..23f89bd 100644 --- a/src/java/com/samskivert/depot/annotation/Index.java +++ b/src/java/com/samskivert/depot/annotation/Index.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006-2007 Michael Bayne, Pär Winzell -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/annotation/TableGenerator.java b/src/java/com/samskivert/depot/annotation/TableGenerator.java index 2b9b2a2..1fdaaa4 100644 --- a/src/java/com/samskivert/depot/annotation/TableGenerator.java +++ b/src/java/com/samskivert/depot/annotation/TableGenerator.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006-2007 Michael Bayne, Pär Winzell -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/annotation/Transient.java b/src/java/com/samskivert/depot/annotation/Transient.java index 7c0387d..e349d67 100644 --- a/src/java/com/samskivert/depot/annotation/Transient.java +++ b/src/java/com/samskivert/depot/annotation/Transient.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006-2007 Michael Bayne, Pär Winzell -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/annotation/UniqueConstraint.java b/src/java/com/samskivert/depot/annotation/UniqueConstraint.java index ecd6ac2..9b65690 100644 --- a/src/java/com/samskivert/depot/annotation/UniqueConstraint.java +++ b/src/java/com/samskivert/depot/annotation/UniqueConstraint.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006-2007 Michael Bayne, Pär Winzell -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/clause/DeleteClause.java b/src/java/com/samskivert/depot/clause/DeleteClause.java index 788ffef..75a6536 100644 --- a/src/java/com/samskivert/depot/clause/DeleteClause.java +++ b/src/java/com/samskivert/depot/clause/DeleteClause.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006 Michael Bayne -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/clause/FieldDefinition.java b/src/java/com/samskivert/depot/clause/FieldDefinition.java index 446beb6..2122f31 100644 --- a/src/java/com/samskivert/depot/clause/FieldDefinition.java +++ b/src/java/com/samskivert/depot/clause/FieldDefinition.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006-2007 Michael Bayne, Pär Winzell -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/clause/FieldOverride.java b/src/java/com/samskivert/depot/clause/FieldOverride.java index d7a9b46..b767432 100644 --- a/src/java/com/samskivert/depot/clause/FieldOverride.java +++ b/src/java/com/samskivert/depot/clause/FieldOverride.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006-2007 Michael Bayne, Pär Winzell -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/clause/ForUpdate.java b/src/java/com/samskivert/depot/clause/ForUpdate.java index 6ad4457..4a2b93b 100644 --- a/src/java/com/samskivert/depot/clause/ForUpdate.java +++ b/src/java/com/samskivert/depot/clause/ForUpdate.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006-2007 Michael Bayne, Pär Winzell -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/clause/FromOverride.java b/src/java/com/samskivert/depot/clause/FromOverride.java index 42aac1a..bfd6028 100644 --- a/src/java/com/samskivert/depot/clause/FromOverride.java +++ b/src/java/com/samskivert/depot/clause/FromOverride.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006-2007 Michael Bayne, Pär Winzell -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/clause/GroupBy.java b/src/java/com/samskivert/depot/clause/GroupBy.java index 722ed1d..769e4a4 100644 --- a/src/java/com/samskivert/depot/clause/GroupBy.java +++ b/src/java/com/samskivert/depot/clause/GroupBy.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006-2007 Michael Bayne, Pär Winzell -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/clause/InsertClause.java b/src/java/com/samskivert/depot/clause/InsertClause.java index 96367bd..daeb706 100644 --- a/src/java/com/samskivert/depot/clause/InsertClause.java +++ b/src/java/com/samskivert/depot/clause/InsertClause.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006 Michael Bayne -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/clause/Join.java b/src/java/com/samskivert/depot/clause/Join.java index 4607177..5183804 100644 --- a/src/java/com/samskivert/depot/clause/Join.java +++ b/src/java/com/samskivert/depot/clause/Join.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006-2007 Michael Bayne, Pär Winzell -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/clause/Limit.java b/src/java/com/samskivert/depot/clause/Limit.java index 2a93cdc..e308d59 100644 --- a/src/java/com/samskivert/depot/clause/Limit.java +++ b/src/java/com/samskivert/depot/clause/Limit.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006-2007 Michael Bayne, Pär Winzell -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/clause/OrderBy.java b/src/java/com/samskivert/depot/clause/OrderBy.java index d8dd14a..4e3dc7d 100644 --- a/src/java/com/samskivert/depot/clause/OrderBy.java +++ b/src/java/com/samskivert/depot/clause/OrderBy.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006-2007 Michael Bayne, Pär Winzell -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/clause/QueryClause.java b/src/java/com/samskivert/depot/clause/QueryClause.java index bec3958..5f225c7 100644 --- a/src/java/com/samskivert/depot/clause/QueryClause.java +++ b/src/java/com/samskivert/depot/clause/QueryClause.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006-2007 Michael Bayne, Pär Winzell -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/clause/SelectClause.java b/src/java/com/samskivert/depot/clause/SelectClause.java index f8f34f5..85333d5 100644 --- a/src/java/com/samskivert/depot/clause/SelectClause.java +++ b/src/java/com/samskivert/depot/clause/SelectClause.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006 Michael Bayne -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/clause/UpdateClause.java b/src/java/com/samskivert/depot/clause/UpdateClause.java index 193c0c4..8bea9e5 100644 --- a/src/java/com/samskivert/depot/clause/UpdateClause.java +++ b/src/java/com/samskivert/depot/clause/UpdateClause.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006 Michael Bayne -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/clause/Where.java b/src/java/com/samskivert/depot/clause/Where.java index e687b37..d088f42 100644 --- a/src/java/com/samskivert/depot/clause/Where.java +++ b/src/java/com/samskivert/depot/clause/Where.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006-2007 Michael Bayne, Pär Winzell -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/expression/ColumnExp.java b/src/java/com/samskivert/depot/expression/ColumnExp.java index 6daa338..9cbe386 100644 --- a/src/java/com/samskivert/depot/expression/ColumnExp.java +++ b/src/java/com/samskivert/depot/expression/ColumnExp.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006-2007 Michael Bayne, Pär Winzell -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/expression/EpochSeconds.java b/src/java/com/samskivert/depot/expression/EpochSeconds.java index 2727ad5..7b1bb76 100644 --- a/src/java/com/samskivert/depot/expression/EpochSeconds.java +++ b/src/java/com/samskivert/depot/expression/EpochSeconds.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006-2007 Michael Bayne, Pär Winzell -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/expression/ExpressionVisitor.java b/src/java/com/samskivert/depot/expression/ExpressionVisitor.java index 40fd5d0..5d99842 100644 --- a/src/java/com/samskivert/depot/expression/ExpressionVisitor.java +++ b/src/java/com/samskivert/depot/expression/ExpressionVisitor.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006 Michael Bayne, Pär Winzell -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/expression/FunctionExp.java b/src/java/com/samskivert/depot/expression/FunctionExp.java index fc69efd..70987ec 100644 --- a/src/java/com/samskivert/depot/expression/FunctionExp.java +++ b/src/java/com/samskivert/depot/expression/FunctionExp.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006-2007 Michael Bayne, Pär Winzell -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/expression/LiteralExp.java b/src/java/com/samskivert/depot/expression/LiteralExp.java index afad3f6..616f126 100644 --- a/src/java/com/samskivert/depot/expression/LiteralExp.java +++ b/src/java/com/samskivert/depot/expression/LiteralExp.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006-2007 Michael Bayne, Pär Winzell -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/expression/SQLExpression.java b/src/java/com/samskivert/depot/expression/SQLExpression.java index effe117..024f7b9 100644 --- a/src/java/com/samskivert/depot/expression/SQLExpression.java +++ b/src/java/com/samskivert/depot/expression/SQLExpression.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006-2007 Michael Bayne, Pär Winzell -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/expression/ValueExp.java b/src/java/com/samskivert/depot/expression/ValueExp.java index 0b76427..cfbfe9e 100644 --- a/src/java/com/samskivert/depot/expression/ValueExp.java +++ b/src/java/com/samskivert/depot/expression/ValueExp.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006-2007 Michael Bayne, Pär Winzell -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/operator/Arithmetic.java b/src/java/com/samskivert/depot/operator/Arithmetic.java index afaf9a4..5011f07 100644 --- a/src/java/com/samskivert/depot/operator/Arithmetic.java +++ b/src/java/com/samskivert/depot/operator/Arithmetic.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006-2007 Michael Bayne, Pär Winzell -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/operator/Conditionals.java b/src/java/com/samskivert/depot/operator/Conditionals.java index c8e1f69..1366ab0 100644 --- a/src/java/com/samskivert/depot/operator/Conditionals.java +++ b/src/java/com/samskivert/depot/operator/Conditionals.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006-2007 Michael Bayne, Pär Winzell -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/operator/Logic.java b/src/java/com/samskivert/depot/operator/Logic.java index 7170507..655ff8b 100644 --- a/src/java/com/samskivert/depot/operator/Logic.java +++ b/src/java/com/samskivert/depot/operator/Logic.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006-2007 Michael Bayne, Pär Winzell -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/operator/SQLOperator.java b/src/java/com/samskivert/depot/operator/SQLOperator.java index 75fd3c6..38a6cba 100644 --- a/src/java/com/samskivert/depot/operator/SQLOperator.java +++ b/src/java/com/samskivert/depot/operator/SQLOperator.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006-2007 Michael Bayne, Pär Winzell -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or diff --git a/src/java/com/samskivert/depot/tools/GenRecordTask.java b/src/java/com/samskivert/depot/tools/GenRecordTask.java index b07dfb4..3e7f5aa 100644 --- a/src/java/com/samskivert/depot/tools/GenRecordTask.java +++ b/src/java/com/samskivert/depot/tools/GenRecordTask.java @@ -1,9 +1,9 @@ // // $Id$ // -// samskivert library - useful routines for java programs -// Copyright (C) 2006-2007 Michael Bayne, Pär Winzell -// +// Depot library - a Java relational persistence library +// Copyright (C) 2006-2008 Michael Bayne and Pär Winzell +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or