You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by dg...@apache.org on 2004/01/11 23:30:39 UTC

cvs commit: jakarta-commons/dbutils/src/test/org/apache/commons/dbutils/wrappers StringTrimmedResultSetTest.java SqlNullCheckedResultSetTest.java

dgraham     2004/01/11 14:30:39

  Modified:    dbutils/src/java/org/apache/commons/dbutils
                        ResultSetHandler.java DbUtils.java QueryLoader.java
                        BasicColumnProcessor.java BasicRowProcessor.java
                        ProxyFactory.java ColumnProcessor.java
                        RowProcessor.java ResultSetIterator.java
                        QueryRunner.java
               dbutils/src/java/org/apache/commons/dbutils/wrappers
                        SqlNullCheckedResultSet.java
                        StringTrimmedResultSet.java
               dbutils/src/test/org/apache/commons/dbutils/handlers
                        BeanHandlerTest.java BeanListHandlerTest.java
                        ArrayHandlerTest.java ScalarHandlerTest.java
                        MapListHandlerTest.java ArrayListHandlerTest.java
                        MapHandlerTest.java
               dbutils/src/java/org/apache/commons/dbutils/handlers
                        ScalarHandler.java ArrayHandler.java
                        BeanListHandler.java BeanHandler.java
                        MapHandler.java MapListHandler.java
                        ArrayListHandler.java
               dbutils/src/test/org/apache/commons/dbutils
                        BaseTestCase.java BasicRowProcessorTest.java
                        ProxyFactoryTest.java MockResultSet.java
                        BasicColumnProcessorTest.java
                        ResultSetIteratorTest.java TestBean.java
                        MockResultSetMetaData.java QueryLoaderTest.java
               dbutils/src/test/org/apache/commons/dbutils/wrappers
                        StringTrimmedResultSetTest.java
                        SqlNullCheckedResultSetTest.java
  Log:
  Removed @author javadoc tags, all contributors are listed in 
  project.xml, updated copyright year.
  
  Revision  Changes    Path
  1.2       +4 -7      jakarta-commons/dbutils/src/java/org/apache/commons/dbutils/ResultSetHandler.java
  
  Index: ResultSetHandler.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/dbutils/src/java/org/apache/commons/dbutils/ResultSetHandler.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- ResultSetHandler.java	2 Nov 2003 19:15:23 -0000	1.1
  +++ ResultSetHandler.java	11 Jan 2004 22:30:38 -0000	1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2003 The Apache Software Foundation.  All rights
  + * Copyright (c) 2003-2004 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -66,9 +66,6 @@
   
   /**
    * Implementations of this interface convert ResultSets into other objects.
  - *
  - * @author Juozas Baliuka
  - * @author David Graham
    */
   public interface ResultSetHandler {
   
  
  
  
  1.3       +4 -9      jakarta-commons/dbutils/src/java/org/apache/commons/dbutils/DbUtils.java
  
  Index: DbUtils.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/dbutils/src/java/org/apache/commons/dbutils/DbUtils.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- DbUtils.java	3 Nov 2003 00:22:57 -0000	1.2
  +++ DbUtils.java	11 Jan 2004 22:30:38 -0000	1.3
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2002-2003 The Apache Software Foundation.  All rights
  + * Copyright (c) 2002-2004 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -69,11 +69,6 @@
   
   /**
    * A collection of JDBC helper methods.  This class is thread safe.
  - * 
  - * @author Henri Yandell
  - * @author Juozas Baliuka
  - * @author Steven Caswell
  - * @author David Graham
    */
   public final class DbUtils {
   
  
  
  
  1.2       +3 -5      jakarta-commons/dbutils/src/java/org/apache/commons/dbutils/QueryLoader.java
  
  Index: QueryLoader.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/dbutils/src/java/org/apache/commons/dbutils/QueryLoader.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- QueryLoader.java	2 Nov 2003 19:15:23 -0000	1.1
  +++ QueryLoader.java	11 Jan 2004 22:30:38 -0000	1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2003 The Apache Software Foundation.  All rights
  + * Copyright (c) 2003-2004 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -72,8 +72,6 @@
    * SQL mappings.  It acts as a registry for sets of queries so that multiple 
    * copies of the same queries aren't loaded into memory.  This class is thread
    * safe.
  - * 
  - * @author David Graham
    */
   public class QueryLoader {
   
  
  
  
  1.4       +4 -7      jakarta-commons/dbutils/src/java/org/apache/commons/dbutils/BasicColumnProcessor.java
  
  Index: BasicColumnProcessor.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/dbutils/src/java/org/apache/commons/dbutils/BasicColumnProcessor.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- BasicColumnProcessor.java	13 Dec 2003 20:51:09 -0000	1.3
  +++ BasicColumnProcessor.java	11 Jan 2004 22:30:38 -0000	1.4
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2003 The Apache Software Foundation.  All rights
  + * Copyright (c) 2003-2004 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -75,9 +75,6 @@
    * <p>
    * This class is thread safe.
    * </p>
  - * 
  - * @author Corby Page
  - * @author David Graham
    * 
    * @see ColumnProcessor
    * @see BasicRowProcessor
  
  
  
  1.8       +4 -9      jakarta-commons/dbutils/src/java/org/apache/commons/dbutils/BasicRowProcessor.java
  
  Index: BasicRowProcessor.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/dbutils/src/java/org/apache/commons/dbutils/BasicRowProcessor.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- BasicRowProcessor.java	7 Dec 2003 17:25:01 -0000	1.7
  +++ BasicRowProcessor.java	11 Jan 2004 22:30:38 -0000	1.8
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2002-2003 The Apache Software Foundation.  All rights
  + * Copyright (c) 2002-2004 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -85,11 +85,6 @@
    * 
    * @see RowProcessor
    * @see ColumnProcessor
  - * 
  - * @author Henri Yandell
  - * @author Juozas Baliuka
  - * @author David Graham
  - * @author Yoav Shapira
    */
   public class BasicRowProcessor implements RowProcessor {
   
  
  
  
  1.4       +4 -6      jakarta-commons/dbutils/src/java/org/apache/commons/dbutils/ProxyFactory.java
  
  Index: ProxyFactory.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/dbutils/src/java/org/apache/commons/dbutils/ProxyFactory.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- ProxyFactory.java	9 Nov 2003 04:54:32 -0000	1.3
  +++ ProxyFactory.java	11 Jan 2004 22:30:38 -0000	1.4
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2003 The Apache Software Foundation.  All rights
  + * Copyright (c) 2003-2004 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -78,8 +78,6 @@
    * 
    * @see java.lang.reflect.Proxy
    * @see java.lang.reflect.InvocationHandler
  - * 
  - * @author David Graham
    */
   public class ProxyFactory {
   
  
  
  
  1.4       +4 -7      jakarta-commons/dbutils/src/java/org/apache/commons/dbutils/ColumnProcessor.java
  
  Index: ColumnProcessor.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/dbutils/src/java/org/apache/commons/dbutils/ColumnProcessor.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- ColumnProcessor.java	13 Dec 2003 20:51:09 -0000	1.3
  +++ ColumnProcessor.java	11 Jan 2004 22:30:38 -0000	1.4
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2003 The Apache Software Foundation.  All rights
  + * Copyright (c) 2003-2004 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -72,9 +72,6 @@
    * <code>ResultSet</code> columns into objects for those bean properties.  
    * The processor is invoked when creating a JavaBean from a 
    * <code>ResultSet</code>.   
  - *
  - * @author Corby Page
  - * @author David Graham
    * 
    * @see BasicColumnProcessor
    * @see BasicRowProcessor
  
  
  
  1.2       +3 -4      jakarta-commons/dbutils/src/java/org/apache/commons/dbutils/RowProcessor.java
  
  Index: RowProcessor.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/dbutils/src/java/org/apache/commons/dbutils/RowProcessor.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- RowProcessor.java	2 Nov 2003 19:15:23 -0000	1.1
  +++ RowProcessor.java	11 Jan 2004 22:30:38 -0000	1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2003 The Apache Software Foundation.  All rights
  + * Copyright (c) 2003-2004 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -73,7 +73,6 @@
    * from changes to this interface. 
    * 
    * @see BasicRowProcessor
  - * @author David Graham
    */
   public interface RowProcessor {
   
  
  
  
  1.3       +4 -7      jakarta-commons/dbutils/src/java/org/apache/commons/dbutils/ResultSetIterator.java
  
  Index: ResultSetIterator.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/dbutils/src/java/org/apache/commons/dbutils/ResultSetIterator.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- ResultSetIterator.java	28 Nov 2003 19:32:10 -0000	1.2
  +++ ResultSetIterator.java	11 Jan 2004 22:30:38 -0000	1.3
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2002-2003 The Apache Software Foundation.  All rights
  + * Copyright (c) 2002-2004 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -76,9 +76,6 @@
    * This implementation requires the <code>ResultSet.isLast()</code> method
    * to be implemented.
    * </p>
  - * 
  - * @author Henri Yandell
  - * @author David Graham
    */
   public class ResultSetIterator implements Iterator {
   
  
  
  
  1.7       +4 -9      jakarta-commons/dbutils/src/java/org/apache/commons/dbutils/QueryRunner.java
  
  Index: QueryRunner.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/dbutils/src/java/org/apache/commons/dbutils/QueryRunner.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- QueryRunner.java	12 Nov 2003 01:00:55 -0000	1.6
  +++ QueryRunner.java	11 Jan 2004 22:30:38 -0000	1.7
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2002-2003 The Apache Software Foundation.  All rights
  + * Copyright (c) 2002-2004 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -75,11 +75,6 @@
    * <code>ResultSet</code>s.  This class is thread safe.
    * 
    * @see ResultSetHandler
  - * 
  - * @author Henri Yandell
  - * @author Juozas Baliuka
  - * @author Steven Caswell
  - * @author David Graham
    */
   public class QueryRunner {
   
  
  
  
  1.4       +4 -8      jakarta-commons/dbutils/src/java/org/apache/commons/dbutils/wrappers/SqlNullCheckedResultSet.java
  
  Index: SqlNullCheckedResultSet.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/dbutils/src/java/org/apache/commons/dbutils/wrappers/SqlNullCheckedResultSet.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- SqlNullCheckedResultSet.java	9 Nov 2003 18:18:04 -0000	1.3
  +++ SqlNullCheckedResultSet.java	11 Jan 2004 22:30:38 -0000	1.4
  @@ -7,7 +7,7 @@
    * 
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2003 The Apache Software Foundation.  All rights
  + * Copyright (c) 2003-2004 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -110,10 +110,6 @@
    * </pre>
    * </blockquote>
    * </p>
  - *
  - * @author  <a href="stevencaswell@apache.org">Steven Caswell</a>
  - * @author David Graham
  - * @version $Id$
    */
   public class SqlNullCheckedResultSet implements InvocationHandler {
   
  
  
  
  1.2       +3 -7      jakarta-commons/dbutils/src/java/org/apache/commons/dbutils/wrappers/StringTrimmedResultSet.java
  
  Index: StringTrimmedResultSet.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/dbutils/src/java/org/apache/commons/dbutils/wrappers/StringTrimmedResultSet.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- StringTrimmedResultSet.java	2 Nov 2003 19:15:23 -0000	1.1
  +++ StringTrimmedResultSet.java	11 Jan 2004 22:30:38 -0000	1.2
  @@ -7,7 +7,7 @@
    * 
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2003 The Apache Software Foundation.  All rights
  + * Copyright (c) 2003-2004 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -86,10 +86,6 @@
    * // Pass wrapped ResultSet to processor
    * List list = BasicRowProcessor.instance().toBeanList(rs);
    * </pre>
  - *
  - * @author <a href="stevencaswell@apache.org">Steven Caswell</a>
  - * @author David Graham
  - * @version $Id$
    */
   public class StringTrimmedResultSet implements InvocationHandler {
   
  
  
  
  1.2       +3 -5      jakarta-commons/dbutils/src/test/org/apache/commons/dbutils/handlers/BeanHandlerTest.java
  
  Index: BeanHandlerTest.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/dbutils/src/test/org/apache/commons/dbutils/handlers/BeanHandlerTest.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- BeanHandlerTest.java	2 Nov 2003 19:15:23 -0000	1.1
  +++ BeanHandlerTest.java	11 Jan 2004 22:30:38 -0000	1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2003 The Apache Software Foundation.  All rights
  + * Copyright (c) 2003-2004 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -69,8 +69,6 @@
   
   /**
    * BeanHandlerTest
  - * 
  - * @author David Graham
    */
   public class BeanHandlerTest extends BaseTestCase {
   
  
  
  
  1.2       +4 -6      jakarta-commons/dbutils/src/test/org/apache/commons/dbutils/handlers/BeanListHandlerTest.java
  
  Index: BeanListHandlerTest.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/dbutils/src/test/org/apache/commons/dbutils/handlers/BeanListHandlerTest.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- BeanListHandlerTest.java	2 Nov 2003 19:15:23 -0000	1.1
  +++ BeanListHandlerTest.java	11 Jan 2004 22:30:38 -0000	1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2003 The Apache Software Foundation.  All rights
  + * Copyright (c) 2003-2004 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -71,8 +71,6 @@
   
   /**
    * BeanListHandlerTest
  - * 
  - * @author David Graham
    */
   public class BeanListHandlerTest extends BaseTestCase {
   
  
  
  
  1.2       +4 -6      jakarta-commons/dbutils/src/test/org/apache/commons/dbutils/handlers/ArrayHandlerTest.java
  
  Index: ArrayHandlerTest.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/dbutils/src/test/org/apache/commons/dbutils/handlers/ArrayHandlerTest.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- ArrayHandlerTest.java	2 Nov 2003 19:15:23 -0000	1.1
  +++ ArrayHandlerTest.java	11 Jan 2004 22:30:38 -0000	1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2003 The Apache Software Foundation.  All rights
  + * Copyright (c) 2003-2004 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -68,8 +68,6 @@
   
   /**
    * ArrayHandlerTest
  - * 
  - * @author David Graham
    */
   public class ArrayHandlerTest extends BaseTestCase {
   
  
  
  
  1.2       +3 -5      jakarta-commons/dbutils/src/test/org/apache/commons/dbutils/handlers/ScalarHandlerTest.java
  
  Index: ScalarHandlerTest.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/dbutils/src/test/org/apache/commons/dbutils/handlers/ScalarHandlerTest.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- ScalarHandlerTest.java	2 Nov 2003 19:15:23 -0000	1.1
  +++ ScalarHandlerTest.java	11 Jan 2004 22:30:38 -0000	1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2003 The Apache Software Foundation.  All rights
  + * Copyright (c) 2003-2004 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -68,8 +68,6 @@
   
   /**
    * ScalarHandlerTest
  - * 
  - * @author David Graham
    */
   public class ScalarHandlerTest extends BaseTestCase {
   
  
  
  
  1.2       +4 -6      jakarta-commons/dbutils/src/test/org/apache/commons/dbutils/handlers/MapListHandlerTest.java
  
  Index: MapListHandlerTest.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/dbutils/src/test/org/apache/commons/dbutils/handlers/MapListHandlerTest.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- MapListHandlerTest.java	2 Nov 2003 19:15:23 -0000	1.1
  +++ MapListHandlerTest.java	11 Jan 2004 22:30:38 -0000	1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2003 The Apache Software Foundation.  All rights
  + * Copyright (c) 2003-2004 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -71,8 +71,6 @@
   
   /**
    * MapListHandlerTest
  - * 
  - * @author David Graham
    */
   public class MapListHandlerTest extends BaseTestCase {
   
  
  
  
  1.2       +4 -6      jakarta-commons/dbutils/src/test/org/apache/commons/dbutils/handlers/ArrayListHandlerTest.java
  
  Index: ArrayListHandlerTest.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/dbutils/src/test/org/apache/commons/dbutils/handlers/ArrayListHandlerTest.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- ArrayListHandlerTest.java	2 Nov 2003 19:15:23 -0000	1.1
  +++ ArrayListHandlerTest.java	11 Jan 2004 22:30:38 -0000	1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2003 The Apache Software Foundation.  All rights
  + * Copyright (c) 2003-2004 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -70,8 +70,6 @@
   
   /**
    * ArrayListHandlerTest
  - * 
  - * @author David Graham
    */
   public class ArrayListHandlerTest extends BaseTestCase {
   
  
  
  
  1.2       +4 -6      jakarta-commons/dbutils/src/test/org/apache/commons/dbutils/handlers/MapHandlerTest.java
  
  Index: MapHandlerTest.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/dbutils/src/test/org/apache/commons/dbutils/handlers/MapHandlerTest.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- MapHandlerTest.java	2 Nov 2003 19:15:23 -0000	1.1
  +++ MapHandlerTest.java	11 Jan 2004 22:30:38 -0000	1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2003 The Apache Software Foundation.  All rights
  + * Copyright (c) 2003-2004 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -69,8 +69,6 @@
   
   /**
    * MapHandlerTest
  - * 
  - * @author David Graham
    */
   public class MapHandlerTest extends BaseTestCase {
   
  
  
  
  1.2       +4 -6      jakarta-commons/dbutils/src/java/org/apache/commons/dbutils/handlers/ScalarHandler.java
  
  Index: ScalarHandler.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/dbutils/src/java/org/apache/commons/dbutils/handlers/ScalarHandler.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- ScalarHandler.java	2 Nov 2003 19:15:24 -0000	1.1
  +++ ScalarHandler.java	11 Jan 2004 22:30:38 -0000	1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2003 The Apache Software Foundation.  All rights
  + * Copyright (c) 2003-2004 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -71,8 +71,6 @@
    * <code>ResultSet</code> column into an Object. This class is thread safe.
    * 
    * @see ResultSetHandler
  - * @author Juozas Baliuka
  - * @author David Graham
    */
   public class ScalarHandler implements ResultSetHandler {
   
  
  
  
  1.3       +4 -7      jakarta-commons/dbutils/src/java/org/apache/commons/dbutils/handlers/ArrayHandler.java
  
  Index: ArrayHandler.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/dbutils/src/java/org/apache/commons/dbutils/handlers/ArrayHandler.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- ArrayHandler.java	28 Nov 2003 19:32:10 -0000	1.2
  +++ ArrayHandler.java	11 Jan 2004 22:30:38 -0000	1.3
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2003 The Apache Software Foundation.  All rights
  + * Copyright (c) 2003-2004 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -74,9 +74,6 @@
    * thread safe.
    * 
    * @see ResultSetHandler
  - * 
  - * @author Juozas Baliuka
  - * @author David Graham
    */
   public class ArrayHandler implements ResultSetHandler {
   
  
  
  
  1.3       +4 -7      jakarta-commons/dbutils/src/java/org/apache/commons/dbutils/handlers/BeanListHandler.java
  
  Index: BeanListHandler.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/dbutils/src/java/org/apache/commons/dbutils/handlers/BeanListHandler.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- BeanListHandler.java	28 Nov 2003 19:32:10 -0000	1.2
  +++ BeanListHandler.java	11 Jan 2004 22:30:38 -0000	1.3
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2003 The Apache Software Foundation.  All rights
  + * Copyright (c) 2003-2004 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -73,9 +73,6 @@
    * thread safe.
    * 
    * @see ResultSetHandler
  - * 
  - * @author Juozas Baliuka
  - * @author David Graham
    */
   public class BeanListHandler implements ResultSetHandler {
   
  
  
  
  1.3       +4 -7      jakarta-commons/dbutils/src/java/org/apache/commons/dbutils/handlers/BeanHandler.java
  
  Index: BeanHandler.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/dbutils/src/java/org/apache/commons/dbutils/handlers/BeanHandler.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- BeanHandler.java	28 Nov 2003 19:32:10 -0000	1.2
  +++ BeanHandler.java	11 Jan 2004 22:30:38 -0000	1.3
  @@ -7,7 +7,7 @@
    * 
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2003 The Apache Software Foundation.  All rights
  + * Copyright (c) 2003-2004 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -71,9 +71,6 @@
    * <code>ResultSet</code> row into a JavaBean. This class is thread safe.
    * 
    * @see ResultSetHandler
  - * 
  - * @author Juozas Baliuka
  - * @author David Graham
    */
   public class BeanHandler implements ResultSetHandler {
   
  
  
  
  1.3       +4 -6      jakarta-commons/dbutils/src/java/org/apache/commons/dbutils/handlers/MapHandler.java
  
  Index: MapHandler.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/dbutils/src/java/org/apache/commons/dbutils/handlers/MapHandler.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- MapHandler.java	28 Nov 2003 19:32:10 -0000	1.2
  +++ MapHandler.java	11 Jan 2004 22:30:38 -0000	1.3
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2003 The Apache Software Foundation.  All rights
  + * Copyright (c) 2003-2004 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -73,8 +73,6 @@
    * safe.
    * 
    * @see ResultSetHandler
  - * @author Juozas Baliuka
  - * @author David Graham
    */
   public class MapHandler implements ResultSetHandler {
   
  
  
  
  1.3       +4 -6      jakarta-commons/dbutils/src/java/org/apache/commons/dbutils/handlers/MapListHandler.java
  
  Index: MapListHandler.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/dbutils/src/java/org/apache/commons/dbutils/handlers/MapListHandler.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- MapListHandler.java	28 Nov 2003 19:32:10 -0000	1.2
  +++ MapListHandler.java	11 Jan 2004 22:30:38 -0000	1.3
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2003 The Apache Software Foundation.  All rights
  + * Copyright (c) 2003-2004 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -75,8 +75,6 @@
    * This class is thread safe.
    * 
    * @see ResultSetHandler
  - * 
  - * @author David Graham
    */
   public class MapListHandler implements ResultSetHandler {
   
  
  
  
  1.3       +4 -7      jakarta-commons/dbutils/src/java/org/apache/commons/dbutils/handlers/ArrayListHandler.java
  
  Index: ArrayListHandler.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/dbutils/src/java/org/apache/commons/dbutils/handlers/ArrayListHandler.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- ArrayListHandler.java	28 Nov 2003 19:32:10 -0000	1.2
  +++ ArrayListHandler.java	11 Jan 2004 22:30:38 -0000	1.3
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2003 The Apache Software Foundation.  All rights
  + * Copyright (c) 2003-2004 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -75,9 +75,6 @@
    * This class is thread safe.
    * 
    * @see ResultSetHandler
  - * 
  - * @author Juozas Baliuka
  - * @author David Graham
    */
   public class ArrayListHandler implements ResultSetHandler {
   
  
  
  
  1.5       +4 -6      jakarta-commons/dbutils/src/test/org/apache/commons/dbutils/BaseTestCase.java
  
  Index: BaseTestCase.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/dbutils/src/test/org/apache/commons/dbutils/BaseTestCase.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- BaseTestCase.java	28 Nov 2003 21:11:33 -0000	1.4
  +++ BaseTestCase.java	11 Jan 2004 22:30:38 -0000	1.5
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2003 The Apache Software Foundation.  All rights
  + * Copyright (c) 2003-2004 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -83,8 +83,6 @@
   /**
    * BaseTestCase is the base class for all test cases as well as the "all tests"
    * runner.
  - * 
  - * @author David Graham
    */
   public class BaseTestCase extends TestCase {
   
  
  
  
  1.5       +4 -6      jakarta-commons/dbutils/src/test/org/apache/commons/dbutils/BasicRowProcessorTest.java
  
  Index: BasicRowProcessorTest.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/dbutils/src/test/org/apache/commons/dbutils/BasicRowProcessorTest.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- BasicRowProcessorTest.java	28 Nov 2003 19:32:10 -0000	1.4
  +++ BasicRowProcessorTest.java	11 Jan 2004 22:30:38 -0000	1.5
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2003 The Apache Software Foundation.  All rights
  + * Copyright (c) 2003-2004 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -67,8 +67,6 @@
   
   /**
    * Test the BasicRowProcessor class.
  - * 
  - * @author David Graham
    */
   public class BasicRowProcessorTest extends BaseTestCase {
   
  
  
  
  1.2       +4 -6      jakarta-commons/dbutils/src/test/org/apache/commons/dbutils/ProxyFactoryTest.java
  
  Index: ProxyFactoryTest.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/dbutils/src/test/org/apache/commons/dbutils/ProxyFactoryTest.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- ProxyFactoryTest.java	2 Nov 2003 19:15:23 -0000	1.1
  +++ ProxyFactoryTest.java	11 Jan 2004 22:30:38 -0000	1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2003 The Apache Software Foundation.  All rights
  + * Copyright (c) 2003-2004 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -74,8 +74,6 @@
   /**
    * ProxyFactoryTest performs simple type checking on proxy objects returned
    * from a ProxyFactory.
  - * 
  - * @author David Graham
    */
   public class ProxyFactoryTest extends BaseTestCase {
   
  
  
  
  1.3       +4 -6      jakarta-commons/dbutils/src/test/org/apache/commons/dbutils/MockResultSet.java
  
  Index: MockResultSet.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/dbutils/src/test/org/apache/commons/dbutils/MockResultSet.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- MockResultSet.java	28 Nov 2003 21:07:38 -0000	1.2
  +++ MockResultSet.java	11 Jan 2004 22:30:38 -0000	1.3
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2003 The Apache Software Foundation.  All rights
  + * Copyright (c) 2003-2004 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -72,8 +72,6 @@
   
   /**
    * MockResultSet dynamically implements the ResultSet interface.
  - *  
  - * @author David Graham
    */
   public class MockResultSet implements InvocationHandler {
   
  
  
  
  1.2       +4 -6      jakarta-commons/dbutils/src/test/org/apache/commons/dbutils/BasicColumnProcessorTest.java
  
  Index: BasicColumnProcessorTest.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/dbutils/src/test/org/apache/commons/dbutils/BasicColumnProcessorTest.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- BasicColumnProcessorTest.java	28 Nov 2003 21:11:33 -0000	1.1
  +++ BasicColumnProcessorTest.java	11 Jan 2004 22:30:39 -0000	1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2003 The Apache Software Foundation.  All rights
  + * Copyright (c) 2003-2004 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -65,8 +65,6 @@
   
   /**
    * BasicColumnProcessorTest
  - * 
  - * @author David Graham
    */
   public class BasicColumnProcessorTest extends BaseTestCase {
   
  
  
  
  1.2       +4 -6      jakarta-commons/dbutils/src/test/org/apache/commons/dbutils/ResultSetIteratorTest.java
  
  Index: ResultSetIteratorTest.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/dbutils/src/test/org/apache/commons/dbutils/ResultSetIteratorTest.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- ResultSetIteratorTest.java	2 Nov 2003 19:15:23 -0000	1.1
  +++ ResultSetIteratorTest.java	11 Jan 2004 22:30:39 -0000	1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2003 The Apache Software Foundation.  All rights
  + * Copyright (c) 2003-2004 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -65,8 +65,6 @@
   
   /**
    * ResultSetIteratorTest
  - * 
  - * @author David Graham
    */
   public class ResultSetIteratorTest extends BaseTestCase {
   
  
  
  
  1.5       +4 -6      jakarta-commons/dbutils/src/test/org/apache/commons/dbutils/TestBean.java
  
  Index: TestBean.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/dbutils/src/test/org/apache/commons/dbutils/TestBean.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- TestBean.java	28 Nov 2003 21:11:33 -0000	1.4
  +++ TestBean.java	11 Jan 2004 22:30:39 -0000	1.5
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2003 The Apache Software Foundation.  All rights
  + * Copyright (c) 2003-2004 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -63,8 +63,6 @@
   
   /**
    * A bean to use in testing toBean() and toBeanList().
  - * 
  - * @author David Graham
    */
   public class TestBean {
   
  
  
  
  1.2       +4 -6      jakarta-commons/dbutils/src/test/org/apache/commons/dbutils/MockResultSetMetaData.java
  
  Index: MockResultSetMetaData.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/dbutils/src/test/org/apache/commons/dbutils/MockResultSetMetaData.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- MockResultSetMetaData.java	2 Nov 2003 19:15:23 -0000	1.1
  +++ MockResultSetMetaData.java	11 Jan 2004 22:30:39 -0000	1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2003 The Apache Software Foundation.  All rights
  + * Copyright (c) 2003-2004 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -68,8 +68,6 @@
   /**
    * MockResultSetMetaData dynamically implements the ResultSetMetaData 
    * interface.
  - *  
  - * @author David Graham
    */
   public class MockResultSetMetaData implements InvocationHandler {
   
  
  
  
  1.3       +4 -6      jakarta-commons/dbutils/src/test/org/apache/commons/dbutils/QueryLoaderTest.java
  
  Index: QueryLoaderTest.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/dbutils/src/test/org/apache/commons/dbutils/QueryLoaderTest.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- QueryLoaderTest.java	9 Nov 2003 19:03:54 -0000	1.2
  +++ QueryLoaderTest.java	11 Jan 2004 22:30:39 -0000	1.3
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2003 The Apache Software Foundation.  All rights
  + * Copyright (c) 2003-2004 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -66,8 +66,6 @@
   
   /**
    * QueryLoaderTest
  - * 
  - * @author David Graham
    */
   public class QueryLoaderTest extends BaseTestCase {
   
  
  
  
  1.2       +4 -6      jakarta-commons/dbutils/src/test/org/apache/commons/dbutils/wrappers/StringTrimmedResultSetTest.java
  
  Index: StringTrimmedResultSetTest.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/dbutils/src/test/org/apache/commons/dbutils/wrappers/StringTrimmedResultSetTest.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- StringTrimmedResultSetTest.java	2 Nov 2003 19:15:24 -0000	1.1
  +++ StringTrimmedResultSetTest.java	11 Jan 2004 22:30:39 -0000	1.2
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2003 The Apache Software Foundation.  All rights
  + * Copyright (c) 2003-2004 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -70,8 +70,6 @@
   
   /**
    * StringTrimmedResultSetTest
  - *
  - * @author David Graham
    */
   public class StringTrimmedResultSetTest extends BaseTestCase {
   
  
  
  
  1.3       +4 -8      jakarta-commons/dbutils/src/test/org/apache/commons/dbutils/wrappers/SqlNullCheckedResultSetTest.java
  
  Index: SqlNullCheckedResultSetTest.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/dbutils/src/test/org/apache/commons/dbutils/wrappers/SqlNullCheckedResultSetTest.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- SqlNullCheckedResultSetTest.java	9 Nov 2003 18:18:04 -0000	1.2
  +++ SqlNullCheckedResultSetTest.java	11 Jan 2004 22:30:39 -0000	1.3
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2003 The Apache Software Foundation.  All rights
  + * Copyright (c) 2003-2004 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -87,10 +87,6 @@
   
   /**
    * Test cases for <code>SqlNullCheckedResultSet</code> class.
  - *
  - * @author  <a href="stevencaswell@apache.org">Steven Caswell</a>
  - * @author David Graham
  - * @version $Id$
    */
   public class SqlNullCheckedResultSetTest extends BaseTestCase {
   
  
  
  

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