You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(5) |
Jul
(7) |
Aug
(37) |
Sep
|
Oct
|
Nov
(1) |
Dec
(22) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
(8) |
Feb
(68) |
Mar
(72) |
Apr
(149) |
May
(32) |
Jun
(46) |
Jul
(26) |
Aug
(59) |
Sep
(25) |
Oct
(18) |
Nov
(4) |
Dec
(3) |
2004 |
Jan
(90) |
Feb
(19) |
Mar
(38) |
Apr
(41) |
May
(44) |
Jun
(2) |
Jul
(10) |
Aug
|
Sep
(14) |
Oct
|
Nov
(1) |
Dec
|
2005 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
(15) |
Jun
(1) |
Jul
|
Aug
(9) |
Sep
|
Oct
(17) |
Nov
|
Dec
|
2006 |
Jan
(1) |
Feb
(16) |
Mar
|
Apr
(1) |
May
(48) |
Jun
|
Jul
(2) |
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
(29) |
2007 |
Jan
|
Feb
(3) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2008 |
Jan
|
Feb
(23) |
Mar
(31) |
Apr
|
May
(26) |
Jun
(6) |
Jul
(1) |
Aug
|
Sep
(7) |
Oct
(1) |
Nov
(8) |
Dec
(8) |
2009 |
Jan
(5) |
Feb
(9) |
Mar
(1) |
Apr
|
May
(23) |
Jun
(3) |
Jul
|
Aug
(1) |
Sep
(9) |
Oct
(28) |
Nov
(18) |
Dec
(8) |
2010 |
Jan
(19) |
Feb
(24) |
Mar
(3) |
Apr
|
May
(5) |
Jun
(4) |
Jul
|
Aug
(1) |
Sep
(11) |
Oct
|
Nov
(2) |
Dec
(1) |
2011 |
Jan
|
Feb
(7) |
Mar
|
Apr
(6) |
May
(3) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2012 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(32) |
Oct
(6) |
Nov
|
Dec
|
From: <mla...@us...> - 2004-02-03 01:20:23
|
Update of /cvsroot/dbunit/dbunit/xdocs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28150/xdocs Modified Files: faq.fml Log Message: Added FAQ about flat XML validation Index: faq.fml =================================================================== RCS file: /cvsroot/dbunit/dbunit/xdocs/faq.fml,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** faq.fml 27 Jan 2004 13:33:43 -0000 1.10 --- faq.fml 3 Feb 2004 01:18:01 -0000 1.11 *************** *** 279,282 **** --- 279,301 ---- </answer> </faq> + + <faq id="flatxmlvalidation"> + <question> + How to enable flat XML dataset validation? + </question> + <answer> + <p> + Flat XML validation is disabled by default even if you are using a DTD. Following sample demonstrate how to load a flat XML dataset with DTD validation enabled: + <source> + FlatXmlProducer producer = new FlatXmlProducer( + new InputSource("dataset.xml")); + producer.setValidating(true); + IDataSet dataSet = new CachedDataSet(producer); + </source> + </p> + + </answer> + </faq> + </part> |
From: <mla...@us...> - 2004-02-02 23:09:31
|
Update of /cvsroot/dbunit/dbunit/src/test/org/dbunit/ext/oracle In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16892/src/test/org/dbunit/ext/oracle Modified Files: OracleDataTypeFactoryTest.java Log Message: Added support for large Oracle BLOB. Index: OracleDataTypeFactoryTest.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/test/org/dbunit/ext/oracle/OracleDataTypeFactoryTest.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** OracleDataTypeFactoryTest.java 22 Jan 2004 02:54:28 -0000 1.5 --- OracleDataTypeFactoryTest.java 2 Feb 2004 23:07:25 -0000 1.6 *************** *** 49,53 **** String sqlTypeName = "BLOB"; ! DataType expected = DataType.BLOB; DataType actual = createFactory().createDataType(sqlType, sqlTypeName); assertSame("type", expected, actual); --- 49,53 ---- String sqlTypeName = "BLOB"; ! DataType expected = OracleDataTypeFactory.ORACLE_BLOB; DataType actual = createFactory().createDataType(sqlType, sqlTypeName); assertSame("type", expected, actual); |
From: <mla...@us...> - 2004-02-02 23:09:31
|
Update of /cvsroot/dbunit/dbunit/src/java/org/dbunit/ext/oracle In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16892/src/java/org/dbunit/ext/oracle Modified Files: OracleDataTypeFactory.java Added Files: OracleBlobDataType.java Log Message: Added support for large Oracle BLOB. --- NEW FILE: OracleBlobDataType.java --- /* * * The DbUnit Database Testing Framework * Copyright (C)2002-2004, DbUnit.org * * 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 * */ package org.dbunit.ext.oracle; import org.dbunit.dataset.datatype.BlobDataType; import org.dbunit.dataset.datatype.TypeCastException; import java.io.IOException; import java.io.OutputStream; import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; /** * @author Manuel Laflamme * @version $Revision: 1.1 $ * @since Feb 2, 2004 */ public class OracleBlobDataType extends BlobDataType { private static final Integer DURATION_SESSION = new Integer(1); // private static final Integer DURATION_CALL = new Integer(2); // private static final Integer MODE_READONLY = new Integer(0); private static final Integer MODE_READWRITE = new Integer(1); public Object getSqlValue(int column, ResultSet resultSet) throws SQLException, TypeCastException { return typeCast(resultSet.getBlob(column)); } public void setSqlValue(Object value, int column, PreparedStatement statement) throws SQLException, TypeCastException { statement.setObject(column, getBlob(value, statement.getConnection())); } private Object getBlob(Object value, Connection connection) throws TypeCastException { Object tempBlob = null; try { Class aBlobClass = Class.forName("oracle.sql.BLOB"); // Create new temporary Blob Method createTemporaryMethod = aBlobClass.getMethod("createTemporary", new Class[]{Connection.class, Boolean.TYPE, Integer.TYPE}); tempBlob = createTemporaryMethod.invoke(null, new Object[]{connection, Boolean.TRUE, DURATION_SESSION}); // Open the temporary Blob in readwrite mode to enable writing Method openMethod = aBlobClass.getMethod("open", new Class[]{Integer.TYPE}); openMethod.invoke(tempBlob, new Object[]{MODE_READWRITE}); // Get the output stream to write Method getOutputStreamMethod = tempBlob.getClass().getMethod( "getBinaryOutputStream", new Class[0]); OutputStream tempBlobOutputStream = (OutputStream)getOutputStreamMethod.invoke( tempBlob, new Object[0]); // Write the data into the temporary BLOB tempBlobOutputStream.write((byte[])typeCast(value)); // Flush and close the stream tempBlobOutputStream.flush(); tempBlobOutputStream.close(); // Close the temporary Blob Method closeMethod = tempBlob.getClass().getMethod( "close", new Class[0]); closeMethod.invoke(tempBlob, new Object[0]); } catch (IllegalAccessException e) { freeTemporaryBlob(tempBlob); throw new TypeCastException(e); } catch (NoSuchMethodException e) { freeTemporaryBlob(tempBlob); throw new TypeCastException(e); } catch (IOException e) { freeTemporaryBlob(tempBlob); throw new TypeCastException(e); } catch (InvocationTargetException e) { freeTemporaryBlob(tempBlob); throw new TypeCastException(e.getTargetException()); } catch (ClassNotFoundException e) { freeTemporaryBlob(tempBlob); throw new TypeCastException(e); } return tempBlob; } private void freeTemporaryBlob(Object tempBlob) throws TypeCastException { if (tempBlob == null) { return; } try { Method freeTemporaryMethod = tempBlob.getClass().getMethod("freeTemporary", new Class[0]); freeTemporaryMethod.invoke(tempBlob, new Object[0]); } catch (NoSuchMethodException e) { throw new TypeCastException(e); } catch (IllegalAccessException e) { throw new TypeCastException(e); } catch (InvocationTargetException e) { throw new TypeCastException(e); } } } Index: OracleDataTypeFactory.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/ext/oracle/OracleDataTypeFactory.java,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** OracleDataTypeFactory.java 22 Jan 2004 00:11:42 -0000 1.8 --- OracleDataTypeFactory.java 2 Feb 2004 23:07:24 -0000 1.9 *************** *** 36,39 **** --- 36,40 ---- public class OracleDataTypeFactory extends DefaultDataTypeFactory { + public static final DataType ORACLE_BLOB = new OracleBlobDataType(); public static final DataType ORACLE_CLOB = new OracleClobDataType(); *************** *** 51,55 **** if ("BLOB".equals(sqlTypeName)) { ! return DataType.BLOB; } --- 52,56 ---- if ("BLOB".equals(sqlTypeName)) { ! return ORACLE_BLOB; } |
From: <mla...@pr...> - 2004-01-27 13:34:48
|
Update of /cvsroot/dbunit/dbunit/xdocs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7890/xdocs Modified Files: faq.fml Log Message: Added note about the failing test. Index: faq.fml =================================================================== RCS file: /cvsroot/dbunit/dbunit/xdocs/faq.fml,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** faq.fml 23 Jan 2004 07:14:13 -0000 1.9 --- faq.fml 27 Jan 2004 13:33:43 -0000 1.10 *************** *** 24,28 **** </question> <answer> ! <p>Since version 2.0, DbUnit is build with <a href="http://maven.apache.org/">Maven 1.0-rc1</a>. See project <a href="dependencies.html">dependencies</a>.</p> </answer> </faq> --- 24,30 ---- </question> <answer> ! <p>Since version 2.0, DbUnit is build with <a href="http://maven.apache.org/">Maven 1.0-rc1</a>. See project <a href="dependencies.html">dependencies</a>. </p> ! <p><b>NOTE:</b> There is currently one test from the DbUnit 2.0 source distribution that fails. You can safely ignore this failure when building DbUnit. ! </p> </answer> </faq> |
From: <mla...@pr...> - 2004-01-26 23:39:27
|
Update of /cvsroot/dbunit/dbunit/src/test/org/dbunit/dataset/xml In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26788/src/test/org/dbunit/dataset/xml Modified Files: AllTests.java Added Files: FlatDtdWriterTest.java Log Message: Added ability to export DTD with Sequence or Choice content model. Default is Sequence. --- NEW FILE: FlatDtdWriterTest.java --- package org.dbunit.dataset.xml; import org.dbunit.dataset.Column; import org.dbunit.dataset.DefaultTable; import org.dbunit.dataset.DefaultDataSet; import org.dbunit.dataset.datatype.DataType; import junit.framework.TestCase; import java.io.StringWriter; /** * <p> Copyright (c) 2003 OZ.COM. All Rights Reserved. </p> * * @author manuel.laflamme * @since Jan 26, 2004 */ public class FlatDtdWriterTest extends TestCase { public void testWriteSequenceModel() throws Exception { String expectedOutput = "<!ELEMENT dataset (\n" + " TABLE1*,\n" + " TABLE2*)>\n" + "\n" + "<!ELEMENT TABLE1 EMPTY>\n" + "<!ATTLIST TABLE1\n" + " COL0 CDATA #IMPLIED\n" + " COL1 CDATA #IMPLIED\n" + " COL2 CDATA #REQUIRED\n" + ">\n" + "\n" + "<!ELEMENT TABLE2 EMPTY>\n" + "<!ATTLIST TABLE2\n" + " COL0 CDATA #IMPLIED\n" + " COL1 CDATA #IMPLIED\n" + " COL2 CDATA #REQUIRED\n" + ">\n" + "\n"; Column[] columns = new Column[]{ new Column("COL0", DataType.UNKNOWN, Column.NULLABLE), new Column("COL1", DataType.UNKNOWN, Column.NULLABLE_UNKNOWN), new Column("COL2", DataType.UNKNOWN, Column.NO_NULLS), }; DefaultTable table1 = new DefaultTable("TABLE1", columns); DefaultTable table2 = new DefaultTable("TABLE2", columns); StringWriter stringWriter = new StringWriter(); FlatDtdWriter dtdWriter = new FlatDtdWriter(stringWriter); dtdWriter.write(new DefaultDataSet(table1, table2)); String actualOutput = stringWriter.toString(); assertEquals("output", expectedOutput, actualOutput); } public void testWriteChoiceModel() throws Exception { String expectedOutput = "<!ELEMENT dataset (\n" + " (TABLE1|\n" + " TABLE2)*)>\n" + "\n" + "<!ELEMENT TABLE1 EMPTY>\n" + "<!ATTLIST TABLE1\n" + " COL0 CDATA #IMPLIED\n" + " COL1 CDATA #IMPLIED\n" + " COL2 CDATA #REQUIRED\n" + ">\n" + "\n" + "<!ELEMENT TABLE2 EMPTY>\n" + "<!ATTLIST TABLE2\n" + " COL0 CDATA #IMPLIED\n" + " COL1 CDATA #IMPLIED\n" + " COL2 CDATA #REQUIRED\n" + ">\n" + "\n"; Column[] columns = new Column[]{ new Column("COL0", DataType.UNKNOWN, Column.NULLABLE), new Column("COL1", DataType.UNKNOWN, Column.NULLABLE_UNKNOWN), new Column("COL2", DataType.UNKNOWN, Column.NO_NULLS), }; DefaultTable table1 = new DefaultTable("TABLE1", columns); DefaultTable table2 = new DefaultTable("TABLE2", columns); StringWriter stringWriter = new StringWriter(); FlatDtdWriter dtdWriter = new FlatDtdWriter(stringWriter); dtdWriter.setContentModel(FlatDtdWriter.CHOICE); dtdWriter.write(new DefaultDataSet(table1, table2)); String actualOutput = stringWriter.toString(); assertEquals("output", expectedOutput, actualOutput); } } Index: AllTests.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/test/org/dbunit/dataset/xml/AllTests.java,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** AllTests.java 22 Jan 2004 02:54:22 -0000 1.9 --- AllTests.java 26 Jan 2004 23:37:49 -0000 1.10 *************** *** 36,39 **** --- 36,40 ---- suite.addTest(new TestSuite(FlatDtdDataSetTest.class)); suite.addTest(new TestSuite(FlatDtdProducerTest.class)); + suite.addTest(new TestSuite(FlatDtdWriterTest.class)); suite.addTest(new TestSuite(FlatXmlDataSetTest.class)); suite.addTest(new TestSuite(FlatXmlProducerTest.class)); |
From: <mla...@pr...> - 2004-01-26 23:39:08
|
Update of /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/xml In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26788/src/java/org/dbunit/dataset/xml Modified Files: FlatDtdWriter.java Log Message: Added ability to export DTD with Sequence or Choice content model. Default is Sequence. Index: FlatDtdWriter.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/xml/FlatDtdWriter.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** FlatDtdWriter.java 22 Jan 2004 02:54:19 -0000 1.4 --- FlatDtdWriter.java 26 Jan 2004 23:37:49 -0000 1.5 *************** *** 35,43 **** --- 35,53 ---- public class FlatDtdWriter //implements IDataSetConsumer { + public static final ContentModel SEQUENCE = new SequenceModel(); + public static final ContentModel CHOICE = new ChoiceModel(); + private Writer _writer; + private ContentModel _contentModel; public FlatDtdWriter(Writer writer) { _writer = writer; + _contentModel = SEQUENCE; + } + + public void setContentModel(ContentModel contentModel) + { + _contentModel = contentModel; } *************** *** 48,64 **** // dataset element ! printOut.println("<!ELEMENT dataset ("); for (int i = 0; i < tableNames.length; i++) { ! printOut.print(" "); ! printOut.print(tableNames[i]); ! printOut.print("*"); ! if (i + 1 < tableNames.length) ! { ! printOut.println(","); ! } } ! printOut.println(")>"); ! printOut.println(); // tables --- 58,68 ---- // dataset element ! printOut.print("<!ELEMENT dataset (\n"); for (int i = 0; i < tableNames.length; i++) { ! _contentModel.write(printOut, tableNames[i], i, tableNames.length); } ! printOut.print(")>\n"); ! printOut.print("\n"); // tables *************** *** 69,77 **** printOut.print("<!ELEMENT "); printOut.print(tableName); ! printOut.println(" EMPTY>"); // column attributes printOut.print("<!ATTLIST "); ! printOut.println(tableName); Column[] columns = dataSet.getTableMetaData(tableName).getColumns(); for (int j = 0; j < columns.length; j++) --- 73,82 ---- printOut.print("<!ELEMENT "); printOut.print(tableName); ! printOut.print(" EMPTY>\n"); // column attributes printOut.print("<!ATTLIST "); ! printOut.print(tableName); ! printOut.print("\n"); Column[] columns = dataSet.getTableMetaData(tableName).getColumns(); for (int j = 0; j < columns.length; j++) *************** *** 80,97 **** printOut.print(" "); printOut.print(column.getColumnName()); ! if (column.getNullable() == Column.NULLABLE) { ! printOut.println(" CDATA #IMPLIED"); } else { ! printOut.println(" CDATA #REQUIRED"); } } ! printOut.println(">"); ! printOut.println(); } printOut.flush(); } } --- 85,174 ---- printOut.print(" "); printOut.print(column.getColumnName()); ! if (column.getNullable() == Column.NO_NULLS) { ! printOut.print(" CDATA #REQUIRED\n"); } else { ! printOut.print(" CDATA #IMPLIED\n"); } } ! printOut.print(">\n"); ! printOut.print("\n"); } printOut.flush(); } + + public static abstract class ContentModel + { + private final String _name; + + private ContentModel(String name) + { + _name = name; + } + + public String toString() + { + return _name; + } + + public abstract void write(PrintWriter writer, String tableName, + int tableIndex, int tableCount); + } + + public static class SequenceModel extends ContentModel + { + private SequenceModel() + { + super("sequence"); + } + + public void write(PrintWriter writer, String tableName, int tableIndex, int tableCount) + { + boolean last = (tableIndex + 1) == tableCount; + + writer.print(" "); + writer.print(tableName); + writer.print("*"); + if (!last) + { + writer.print(",\n"); + } + } + } + + public static class ChoiceModel extends ContentModel + { + private ChoiceModel() + { + super("sequence"); + } + + public void write(PrintWriter writer, String tableName, int tableIndex, int tableCount) + { + boolean first = tableIndex == 0; + boolean last = (tableIndex + 1) == tableCount; + + if (first) + { + writer.print(" ("); + } + else + { + writer.print(" "); + } + writer.print(tableName); + + if (!last) + { + writer.print("|\n"); + } + else + { + writer.print(")*"); + } + } + } } |
From: <mla...@pr...> - 2004-01-26 19:47:22
|
Update of /cvsroot/dbunit/dbunit In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4167 Modified Files: .cvsignore Log Message: Ignore P6spy files. Index: .cvsignore =================================================================== RCS file: /cvsroot/dbunit/dbunit/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** .cvsignore 4 Nov 2003 08:06:22 -0000 1.1 --- .cvsignore 26 Jan 2004 19:46:16 -0000 1.2 *************** *** 5,6 **** --- 5,7 ---- junit*.properties .project + spy.* |
From: <mla...@us...> - 2004-01-22 14:35:40
|
Update of /cvsroot/dbunit/dbunit/src/java/org/dbunit/util/xml In directory sc8-pr-cvs1:/tmp/cvs-serv22463/src/java/org/dbunit/util/xml Modified Files: XmlWriter.java Log Message: Standardized usage of "DbUnit.org" in license statement. Also optimized imports and added @since Javadoc tag to most files missing it. Index: XmlWriter.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/util/xml/XmlWriter.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** XmlWriter.java 9 Jan 2004 22:00:02 -0000 1.5 --- XmlWriter.java 22 Jan 2004 02:54:20 -0000 1.6 *************** *** 105,109 **** * to generate more compact XML. * ! * @param boolean true to enable, false to disable pretty printing. */ public void enablePrettyPrint(boolean enable) --- 105,109 ---- * to generate more compact XML. * ! * @param enable true to enable, false to disable pretty printing. */ public void enablePrettyPrint(boolean enable) *************** *** 118,122 **** * off indentation when pretty printing. * ! * @param String representing one level of indentation while pretty printing. */ public void setIndent(String indent) --- 118,122 ---- * off indentation when pretty printing. * ! * @param indent representing one level of indentation while pretty printing. */ public void setIndent(String indent) *************** *** 133,137 **** * printing. * ! * @param String representing the newline sequence when pretty printing. */ public void setNewline(String newline) --- 133,137 ---- * printing. * ! * @param newline representing the newline sequence when pretty printing. */ public void setNewline(String newline) *************** *** 178,182 **** * Begin to output an element. * ! * @param String name of element. */ private XmlWriter openElement(String name) throws IOException --- 178,182 ---- * Begin to output an element. * ! * @param name name of element. */ private XmlWriter openElement(String name) throws IOException *************** *** 237,242 **** * the api is set that way for future changes. * ! * @param String name of attribute. ! * @param String value of attribute. */ public XmlWriter writeAttribute(String attr, String value) throws IOException --- 237,242 ---- * the api is set that way for future changes. * ! * @param attr name of attribute. ! * @param value value of attribute. */ public XmlWriter writeAttribute(String attr, String value) throws IOException *************** *** 331,335 **** * passed in data with the CDATA tag. * ! * @param String of CDATA text. */ public XmlWriter writeCData(String cdata) throws IOException --- 331,335 ---- * passed in data with the CDATA tag. * ! * @param cdata of CDATA text. */ public XmlWriter writeCData(String cdata) throws IOException *************** *** 348,352 **** * passed in data with the xml comment tag. * ! * @param String of text to comment. */ public XmlWriter writeComment(String comment) throws IOException --- 348,352 ---- * passed in data with the xml comment tag. * ! * @param comment of text to comment. */ public XmlWriter writeComment(String comment) throws IOException *************** *** 417,421 **** //////////////////////////////////////////////////////////////////////////// ! // Added by Manu for DbUnit private String escapeXml(String str) --- 417,421 ---- //////////////////////////////////////////////////////////////////////////// ! // Added for DbUnit private String escapeXml(String str) |
From: <mla...@us...> - 2004-01-22 07:59:05
|
Update of /cvsroot/dbunit/dbunit/src/java/org/dbunit/util/concurrent In directory sc8-pr-cvs1:/tmp/cvs-serv22463/src/java/org/dbunit/util/concurrent Modified Files: PropertyChangeMulticaster.java SemaphoreControlledChannel.java Slot.java Log Message: Standardized usage of "DbUnit.org" in license statement. Also optimized imports and added @since Javadoc tag to most files missing it. Index: PropertyChangeMulticaster.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/util/concurrent/PropertyChangeMulticaster.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** PropertyChangeMulticaster.java 9 Aug 2003 11:23:31 -0000 1.3 --- PropertyChangeMulticaster.java 22 Jan 2004 02:54:20 -0000 1.4 *************** *** 18,28 **** package org.dbunit.util.concurrent; - import java.beans.PropertyChangeListener; import java.beans.PropertyChangeEvent; ! import java.util.HashMap; ! import java.io.Serializable; ! import java.io.ObjectOutputStream; ! import java.io.ObjectInputStream; import java.io.IOException; /** --- 18,28 ---- package org.dbunit.util.concurrent; import java.beans.PropertyChangeEvent; ! import java.beans.PropertyChangeListener; import java.io.IOException; + import java.io.ObjectInputStream; + import java.io.ObjectOutputStream; + import java.io.Serializable; + import java.util.HashMap; /** Index: SemaphoreControlledChannel.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/util/concurrent/SemaphoreControlledChannel.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** SemaphoreControlledChannel.java 19 Jun 2003 03:17:17 -0000 1.2 --- SemaphoreControlledChannel.java 22 Jan 2004 02:54:20 -0000 1.3 *************** *** 15,19 **** package org.dbunit.util.concurrent; ! import java.lang.reflect.*; /** --- 15,20 ---- package org.dbunit.util.concurrent; ! import java.lang.reflect.Constructor; ! import java.lang.reflect.InvocationTargetException; /** Index: Slot.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/util/concurrent/Slot.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Slot.java 19 Jun 2003 03:17:17 -0000 1.2 --- Slot.java 22 Jan 2004 02:54:20 -0000 1.3 *************** *** 14,18 **** package org.dbunit.util.concurrent; ! import java.lang.reflect.*; /** --- 14,18 ---- package org.dbunit.util.concurrent; ! import java.lang.reflect.InvocationTargetException; /** |
From: <mla...@us...> - 2004-01-22 03:10:37
|
Update of /cvsroot/dbunit/dbunit/src/java/org/dbunit/util In directory sc8-pr-cvs1:/tmp/cvs-serv22463/src/java/org/dbunit/util Modified Files: FileAsserts.java Log Message: Standardized usage of "DbUnit.org" in license statement. Also optimized imports and added @since Javadoc tag to most files missing it. Index: FileAsserts.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/util/FileAsserts.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** FileAsserts.java 9 Aug 2003 11:23:32 -0000 1.2 --- FileAsserts.java 22 Jan 2004 02:54:20 -0000 1.3 *************** *** 24,27 **** --- 24,29 ---- */ + import junit.framework.Assert; + import java.io.BufferedReader; import java.io.File; *************** *** 31,36 **** import java.io.InputStreamReader; - import junit.framework.Assert; - public class FileAsserts { --- 33,36 ---- |
Update of /cvsroot/dbunit/dbunit/src/java/org/dbunit/operation In directory sc8-pr-cvs1:/tmp/cvs-serv22463/src/java/org/dbunit/operation Modified Files: AbstractBatchOperation.java AbstractOperation.java CloseConnectionOperation.java CompositeOperation.java DatabaseOperation.java DeleteAllOperation.java DeleteOperation.java ExclusiveTransactionException.java InsertOperation.java OperationData.java RefreshOperation.java TransactionOperation.java TruncateTableOperation.java UpdateOperation.java Log Message: Standardized usage of "DbUnit.org" in license statement. Also optimized imports and added @since Javadoc tag to most files missing it. Index: AbstractBatchOperation.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/operation/AbstractBatchOperation.java,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** AbstractBatchOperation.java 18 Jan 2004 16:39:24 -0000 1.21 --- AbstractBatchOperation.java 22 Jan 2004 02:54:19 -0000 1.22 *************** *** 1,7 **** /* - * AbstractBatchOperation.java Feb 19, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 24,37 **** import org.dbunit.DatabaseUnitException; - import org.dbunit.database.IDatabaseConnection; import org.dbunit.database.DatabaseConfig; import org.dbunit.database.statement.IPreparedBatchStatement; import org.dbunit.database.statement.IStatementFactory; import org.dbunit.dataset.*; import java.sql.SQLException; import java.util.ArrayList; import java.util.List; - import java.math.BigInteger; /** --- 23,36 ---- import org.dbunit.DatabaseUnitException; import org.dbunit.database.DatabaseConfig; + import org.dbunit.database.IDatabaseConnection; import org.dbunit.database.statement.IPreparedBatchStatement; import org.dbunit.database.statement.IStatementFactory; import org.dbunit.dataset.*; + import java.math.BigInteger; import java.sql.SQLException; import java.util.ArrayList; import java.util.List; /** *************** *** 40,43 **** --- 39,43 ---- * @author Manuel Laflamme * @version $Revision$ + * @since Feb 19, 2002 */ public abstract class AbstractBatchOperation extends AbstractOperation Index: AbstractOperation.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/operation/AbstractOperation.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** AbstractOperation.java 18 Jan 2004 16:39:24 -0000 1.1 --- AbstractOperation.java 22 Jan 2004 02:54:19 -0000 1.2 *************** *** 2,6 **** * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 2,6 ---- * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 21,26 **** package org.dbunit.operation; - import org.dbunit.database.IDatabaseConnection; import org.dbunit.database.DatabaseConfig; import org.dbunit.dataset.DataSetUtils; --- 21,26 ---- package org.dbunit.operation; import org.dbunit.database.DatabaseConfig; + import org.dbunit.database.IDatabaseConnection; import org.dbunit.dataset.DataSetUtils; Index: CloseConnectionOperation.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/operation/CloseConnectionOperation.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** CloseConnectionOperation.java 13 Jun 2002 17:24:57 -0000 1.7 --- CloseConnectionOperation.java 22 Jan 2004 02:54:19 -0000 1.8 *************** *** 1,7 **** /* - * CloseConnectionOperation.java Mar 6, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 34,37 **** --- 33,37 ---- * @author Manuel Laflamme * @version $Revision$ + * @since Mar 6, 2002 */ public class CloseConnectionOperation extends DatabaseOperation Index: CompositeOperation.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/operation/CompositeOperation.java,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** CompositeOperation.java 13 Jun 2002 17:24:57 -0000 1.8 --- CompositeOperation.java 22 Jan 2004 02:54:19 -0000 1.9 *************** *** 1,7 **** /* - * CompositeOperation.java Feb 18, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 35,38 **** --- 34,38 ---- * @author Manuel Laflamme * @version $Revision$ + * @since Feb 18, 2002 */ public class CompositeOperation extends DatabaseOperation Index: DatabaseOperation.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/operation/DatabaseOperation.java,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** DatabaseOperation.java 18 Jan 2004 16:39:24 -0000 1.13 --- DatabaseOperation.java 22 Jan 2004 02:54:19 -0000 1.14 *************** *** 1,7 **** /* - * DatabaseOperation.java Feb 18, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 34,37 **** --- 33,37 ---- * @author Manuel Laflamme * @version $Revision$ + * @since Feb 18, 2002 */ public abstract class DatabaseOperation Index: DeleteAllOperation.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/operation/DeleteAllOperation.java,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** DeleteAllOperation.java 18 Jan 2004 16:39:24 -0000 1.17 --- DeleteAllOperation.java 22 Jan 2004 02:54:19 -0000 1.18 *************** *** 1,5 **** /* * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,5 ---- /* * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 22,30 **** import org.dbunit.DatabaseUnitException; - import org.dbunit.database.IDatabaseConnection; import org.dbunit.database.DatabaseConfig; import org.dbunit.database.statement.IBatchStatement; import org.dbunit.database.statement.IStatementFactory; ! import org.dbunit.dataset.*; import java.sql.SQLException; --- 22,32 ---- import org.dbunit.DatabaseUnitException; import org.dbunit.database.DatabaseConfig; + import org.dbunit.database.IDatabaseConnection; import org.dbunit.database.statement.IBatchStatement; import org.dbunit.database.statement.IStatementFactory; ! import org.dbunit.dataset.IDataSet; ! import org.dbunit.dataset.ITableIterator; ! import org.dbunit.dataset.ITableMetaData; import java.sql.SQLException; Index: DeleteOperation.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/operation/DeleteOperation.java,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** DeleteOperation.java 9 Jan 2004 21:58:31 -0000 1.15 --- DeleteOperation.java 22 Jan 2004 02:54:19 -0000 1.16 *************** *** 1,7 **** /* - * DeleteOperation.java Feb 19, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 25,29 **** import org.dbunit.DatabaseUnitException; import org.dbunit.database.IDatabaseConnection; ! import org.dbunit.dataset.*; import java.math.BigInteger; --- 24,33 ---- import org.dbunit.DatabaseUnitException; import org.dbunit.database.IDatabaseConnection; ! import org.dbunit.dataset.Column; ! import org.dbunit.dataset.DataSetException; ! import org.dbunit.dataset.IDataSet; ! import org.dbunit.dataset.ITableIterator; ! import org.dbunit.dataset.ITableMetaData; ! import org.dbunit.dataset.NoPrimaryKeyException; import java.math.BigInteger; *************** *** 36,39 **** --- 40,44 ---- * @author Manuel Laflamme * @version $Revision$ + * @since Feb 19, 2002 */ public class DeleteOperation extends AbstractBatchOperation Index: ExclusiveTransactionException.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/operation/ExclusiveTransactionException.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** ExclusiveTransactionException.java 13 Jun 2002 17:24:58 -0000 1.6 --- ExclusiveTransactionException.java 22 Jan 2004 02:54:19 -0000 1.7 *************** *** 1,7 **** /* - * ExclusiveTransactionException.java Feb 21, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 28,31 **** --- 27,31 ---- * @author Manuel Laflamme * @version $Revision$ + * @since Feb 21, 2002 */ public class ExclusiveTransactionException extends DatabaseUnitException Index: InsertOperation.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/operation/InsertOperation.java,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** InsertOperation.java 9 Jan 2004 21:58:31 -0000 1.14 --- InsertOperation.java 22 Jan 2004 02:54:19 -0000 1.15 *************** *** 1,7 **** /* - * CompositeOperation.java Feb 18, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 23,29 **** package org.dbunit.operation; - import org.dbunit.dataset.*; import org.dbunit.database.IDatabaseConnection; ! import org.dbunit.DatabaseUnitException; import java.math.BigInteger; --- 22,30 ---- package org.dbunit.operation; import org.dbunit.database.IDatabaseConnection; ! import org.dbunit.dataset.Column; ! import org.dbunit.dataset.DataSetException; ! import org.dbunit.dataset.ITable; ! import org.dbunit.dataset.ITableMetaData; import java.math.BigInteger; *************** *** 37,40 **** --- 38,42 ---- * @author Manuel Laflamme * @version $Revision$ + * @since Feb 18, 2002 */ public class InsertOperation extends AbstractBatchOperation Index: OperationData.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/operation/OperationData.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** OperationData.java 13 Jun 2002 17:24:58 -0000 1.5 --- OperationData.java 22 Jan 2004 02:54:19 -0000 1.6 *************** *** 1,7 **** /* - * OperationData.java Mar 16, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 28,31 **** --- 27,31 ---- * @author Manuel Laflamme * @version $Revision$ + * @since Mar 16, 2002 */ public class OperationData Index: RefreshOperation.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/operation/RefreshOperation.java,v retrieving revision 1.30 retrieving revision 1.31 diff -C2 -d -r1.30 -r1.31 *** RefreshOperation.java 18 Jan 2004 16:39:24 -0000 1.30 --- RefreshOperation.java 22 Jan 2004 02:54:19 -0000 1.31 *************** *** 1,7 **** /* - * RefreshOperation.java Feb 19, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 50,53 **** --- 49,53 ---- * @author Manuel Laflamme * @version $Revision$ + * @since Feb 19, 2002 */ public class RefreshOperation extends AbstractOperation Index: TransactionOperation.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/operation/TransactionOperation.java,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** TransactionOperation.java 13 Jun 2002 17:24:58 -0000 1.8 --- TransactionOperation.java 22 Jan 2004 02:54:19 -0000 1.9 *************** *** 1,7 **** /* - * TransactionOperation.java Feb 21, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 35,38 **** --- 34,38 ---- * @author Manuel Laflamme * @version $Revision$ + * @since Feb 21, 2002 */ public class TransactionOperation extends DatabaseOperation Index: TruncateTableOperation.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/operation/TruncateTableOperation.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TruncateTableOperation.java 1 Aug 2003 02:29:11 -0000 1.2 --- TruncateTableOperation.java 22 Jan 2004 02:54:20 -0000 1.3 *************** *** 1,7 **** /* - * CompositeOperation.java Feb 18, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 24,29 **** import org.dbunit.DatabaseUnitException; - import org.dbunit.database.IDatabaseConnection; import org.dbunit.database.DatabaseConfig; import org.dbunit.dataset.IDataSet; --- 23,28 ---- import org.dbunit.DatabaseUnitException; import org.dbunit.database.DatabaseConfig; + import org.dbunit.database.IDatabaseConnection; import org.dbunit.dataset.IDataSet; Index: UpdateOperation.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/operation/UpdateOperation.java,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** UpdateOperation.java 9 Jan 2004 21:58:31 -0000 1.11 --- UpdateOperation.java 22 Jan 2004 02:54:20 -0000 1.12 *************** *** 1,7 **** /* - * UpdateOperation.java Feb 19, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 23,32 **** package org.dbunit.operation; - import org.dbunit.dataset.*; import org.dbunit.database.IDatabaseConnection; import java.util.ArrayList; import java.util.List; - import java.math.BigInteger; /** --- 22,35 ---- package org.dbunit.operation; import org.dbunit.database.IDatabaseConnection; + import org.dbunit.dataset.Column; + import org.dbunit.dataset.DataSetException; + import org.dbunit.dataset.DataSetUtils; + import org.dbunit.dataset.ITableMetaData; + import org.dbunit.dataset.NoPrimaryKeyException; + import java.math.BigInteger; import java.util.ArrayList; import java.util.List; /** *************** *** 36,39 **** --- 39,43 ---- * @author Manuel Laflamme * @version $Revision$ + * @since Feb 19, 2002 */ public class UpdateOperation extends AbstractBatchOperation |
From: <mla...@us...> - 2004-01-22 03:04:46
|
Update of /cvsroot/dbunit/dbunit/src/java/org/dbunit/operation/mssqlserver In directory sc8-pr-cvs1:/tmp/cvs-serv22463/src/java/org/dbunit/operation/mssqlserver Modified Files: InsertIdentityOperation.java Log Message: Standardized usage of "DbUnit.org" in license statement. Also optimized imports and added @since Javadoc tag to most files missing it. Index: InsertIdentityOperation.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/operation/mssqlserver/InsertIdentityOperation.java,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** InsertIdentityOperation.java 19 Jan 2004 21:34:35 -0000 1.21 --- InsertIdentityOperation.java 22 Jan 2004 02:54:20 -0000 1.22 *************** *** 1,7 **** /* - * InsertIdentityOperation.java * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 21,41 **** package org.dbunit.operation.mssqlserver; - import java.sql.Connection; - import java.sql.SQLException; - import java.sql.Statement; - - import org.dbunit.DatabaseUnitException; - import org.dbunit.database.IDatabaseConnection; - import org.dbunit.dataset.Column; - import org.dbunit.dataset.DataSetException; - import org.dbunit.dataset.DefaultDataSet; - import org.dbunit.dataset.IDataSet; - import org.dbunit.dataset.ITable; - import org.dbunit.dataset.ITableIterator; - import org.dbunit.dataset.ITableMetaData; - import org.dbunit.operation.CompositeOperation; import org.dbunit.operation.DatabaseOperation; - import org.dbunit.operation.ExclusiveTransactionException; - import org.dbunit.operation.AbstractOperation; /** --- 20,24 ---- |
Update of /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset In directory sc8-pr-cvs1:/tmp/cvs-serv22463/src/java/org/dbunit/dataset Modified Files: AbstractDataSet.java AbstractTable.java AbstractTableMetaData.java CachedDataSet.java CachedTable.java CaseInsensitiveDataSet.java CaseInsensitiveTable.java Column.java CompositeDataSet.java CompositeTable.java DataSetException.java DataSetUtils.java DefaultDataSet.java DefaultTable.java DefaultTableIterator.java DefaultTableMetaData.java FilteredDataSet.java ForwardOnlyDataSet.java ForwardOnlyTable.java IDataSet.java ITable.java ITableIterator.java ITableMetaData.java LowerCaseDataSet.java LowerCaseTableMetaData.java NoColumnsFoundException.java NoPrimaryKeyException.java NoSuchColumnException.java NoSuchTableException.java ReplacementDataSet.java ReplacementTable.java RowOutOfBoundsException.java SortedDataSet.java SortedTable.java Log Message: Standardized usage of "DbUnit.org" in license statement. Also optimized imports and added @since Javadoc tag to most files missing it. Index: AbstractDataSet.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/AbstractDataSet.java,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** AbstractDataSet.java 9 Apr 2003 22:52:08 -0000 1.10 --- AbstractDataSet.java 22 Jan 2004 02:54:18 -0000 1.11 *************** *** 1,7 **** /* - * AbstractDataSet.java Feb 22, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 25,31 **** import org.dbunit.database.AmbiguousTableNameException; import java.util.Arrays; import java.util.List; - import java.util.ArrayList; /** --- 24,30 ---- import org.dbunit.database.AmbiguousTableNameException; + import java.util.ArrayList; import java.util.Arrays; import java.util.List; /** *************** *** 36,39 **** --- 35,39 ---- * @author Manuel Laflamme * @version $Revision$ + * @since Feb 22, 2002 */ public abstract class AbstractDataSet implements IDataSet Index: AbstractTable.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/AbstractTable.java,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** AbstractTable.java 13 Apr 2003 02:40:10 -0000 1.12 --- AbstractTable.java 22 Jan 2004 02:54:18 -0000 1.13 *************** *** 3,7 **** * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 3,7 ---- * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 27,30 **** --- 27,31 ---- * @author Manuel Laflamme * @version $Revision$ + * @since Feb 17, 2002 */ public abstract class AbstractTable implements ITable Index: AbstractTableMetaData.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/AbstractTableMetaData.java,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** AbstractTableMetaData.java 6 Sep 2003 01:40:12 -0000 1.8 --- AbstractTableMetaData.java 22 Jan 2004 02:54:18 -0000 1.9 *************** *** 1,7 **** /* - * AbstractTableMetaData.java Mar 8, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 29,32 **** --- 28,32 ---- * @author Manuel Laflamme * @version $Revision$ + * @since Mar 8, 2002 */ public abstract class AbstractTableMetaData implements ITableMetaData Index: CachedDataSet.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/CachedDataSet.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** CachedDataSet.java 18 Jan 2004 16:39:23 -0000 1.4 --- CachedDataSet.java 22 Jan 2004 02:54:18 -0000 1.5 *************** *** 2,6 **** * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 2,6 ---- * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 19,26 **** * */ package org.dbunit.dataset; - import org.dbunit.dataset.stream.IDataSetProducer; import org.dbunit.dataset.stream.IDataSetConsumer; import java.util.ArrayList; --- 19,27 ---- * */ + package org.dbunit.dataset; import org.dbunit.dataset.stream.IDataSetConsumer; + import org.dbunit.dataset.stream.IDataSetProducer; import java.util.ArrayList; Index: CachedTable.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/CachedTable.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** CachedTable.java 19 Jun 2003 03:17:16 -0000 1.2 --- CachedTable.java 22 Jan 2004 02:54:18 -0000 1.3 *************** *** 2,6 **** * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 2,6 ---- * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 19,26 **** * */ package org.dbunit.dataset; - import java.util.List; import java.util.ArrayList; /** --- 19,27 ---- * */ + package org.dbunit.dataset; import java.util.ArrayList; + import java.util.List; /** Index: CaseInsensitiveDataSet.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/CaseInsensitiveDataSet.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** CaseInsensitiveDataSet.java 9 Apr 2003 22:52:08 -0000 1.7 --- CaseInsensitiveDataSet.java 22 Jan 2004 02:54:18 -0000 1.8 *************** *** 1,9 **** /* - * CaseInsensitiveDataSet.java Mar 27, 2002 * ! * Copyright (c)2002 Manuel Laflamme. All Rights Reserved. * ! * This software is the proprietary information of Manuel Laflamme. ! * Use is subject to license terms. * */ --- 1,20 ---- /* * ! * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * ! * 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 * */ Index: CaseInsensitiveTable.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/CaseInsensitiveTable.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** CaseInsensitiveTable.java 26 Feb 2003 22:52:47 -0000 1.5 --- CaseInsensitiveTable.java 22 Jan 2004 02:54:18 -0000 1.6 *************** *** 1,9 **** /* - * CaseInsensitiveTable.java Mar 27, 2002 * ! * Copyright (c)2002 Manuel Laflamme. All Rights Reserved. * ! * This software is the proprietary information of Manuel Laflamme. ! * Use is subject to license terms. * */ --- 1,20 ---- /* * ! * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * ! * 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 * */ *************** *** 14,17 **** --- 25,29 ---- * @author Manuel Laflamme * @version $Revision$ + * @since Mar 27, 2002 * @deprecated All IDataSet implementations are case insensitive since DbUnit 1.5 */ Index: Column.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/Column.java,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** Column.java 19 Jun 2003 03:17:16 -0000 1.11 --- Column.java 22 Jan 2004 02:54:18 -0000 1.12 *************** *** 1,7 **** /* - * Column.java Feb 17, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 32,35 **** --- 31,35 ---- * @author Manuel Laflamme * @version $Revision$ + * @since Feb 17, 2002 */ public class Column Index: CompositeDataSet.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/CompositeDataSet.java,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** CompositeDataSet.java 18 Jan 2004 16:39:23 -0000 1.13 --- CompositeDataSet.java 22 Jan 2004 02:54:18 -0000 1.14 *************** *** 1,7 **** /* - * CompositeDataSet.java * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or Index: CompositeTable.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/CompositeTable.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** CompositeTable.java 13 Jun 2002 17:24:56 -0000 1.7 --- CompositeTable.java 22 Jan 2004 02:54:18 -0000 1.8 *************** *** 1,7 **** /* - * CompositeTable.java Feb 17, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 26,29 **** --- 25,29 ---- * @author Manuel Laflamme * @version $Revision$ + * @since Feb 17, 2002 */ public class CompositeTable extends AbstractTable Index: DataSetException.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/DataSetException.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** DataSetException.java 13 Jun 2002 17:24:56 -0000 1.6 --- DataSetException.java 22 Jan 2004 02:54:18 -0000 1.7 *************** *** 1,7 **** /* - * DataSetException.java Feb 17, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 28,31 **** --- 27,31 ---- * @author Manuel Laflamme * @version $Revision$ + * @since Feb 17, 2002 */ public class DataSetException extends DatabaseUnitException Index: DataSetUtils.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/DataSetUtils.java,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** DataSetUtils.java 1 Aug 2003 02:29:11 -0000 1.17 --- DataSetUtils.java 22 Jan 2004 02:54:18 -0000 1.18 *************** *** 1,7 **** /* - * DataSetUtils.java Feb 19, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 27,33 **** import org.dbunit.dataset.datatype.TypeCastException; - import java.util.StringTokenizer; - import java.util.List; import java.util.ArrayList; /** --- 26,32 ---- import org.dbunit.dataset.datatype.TypeCastException; import java.util.ArrayList; + import java.util.List; + import java.util.StringTokenizer; /** *************** *** 36,39 **** --- 35,39 ---- * @author Manuel Laflamme * @version $Revision$ + * @since Feb 19, 2002 */ public class DataSetUtils Index: DefaultDataSet.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/DefaultDataSet.java,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** DefaultDataSet.java 9 Apr 2003 22:52:09 -0000 1.11 --- DefaultDataSet.java 22 Jan 2004 02:54:18 -0000 1.12 *************** *** 1,7 **** /* - * DefaultDataSet.java Feb 18, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 30,33 **** --- 29,33 ---- * @author Manuel Laflamme * @version $Revision$ + * @since Feb 18, 2002 */ public class DefaultDataSet extends AbstractDataSet Index: DefaultTable.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/DefaultTable.java,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** DefaultTable.java 8 Sep 2003 21:05:23 -0000 1.8 --- DefaultTable.java 22 Jan 2004 02:54:18 -0000 1.9 *************** *** 1,7 **** /* - * DefaultTable.java Feb 17, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 23,33 **** package org.dbunit.dataset; - import java.util.Arrays; - import java.util.List; import java.util.ArrayList; /** * @author Manuel Laflamme * @version $Revision$ */ public class DefaultTable extends AbstractTable --- 22,32 ---- package org.dbunit.dataset; import java.util.ArrayList; + import java.util.List; /** * @author Manuel Laflamme * @version $Revision$ + * @since Feb 17, 2002 */ public class DefaultTable extends AbstractTable Index: DefaultTableIterator.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/DefaultTableIterator.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** DefaultTableIterator.java 9 Apr 2003 22:52:09 -0000 1.3 --- DefaultTableIterator.java 22 Jan 2004 02:54:18 -0000 1.4 *************** *** 2,6 **** * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 2,6 ---- * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or Index: DefaultTableMetaData.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/DefaultTableMetaData.java,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** DefaultTableMetaData.java 11 Mar 2003 12:57:10 -0000 1.9 --- DefaultTableMetaData.java 22 Jan 2004 02:54:18 -0000 1.10 *************** *** 1,7 **** /* - * DefaultTableMetaData.java Feb 17, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 29,32 **** --- 28,32 ---- * @author Manuel Laflamme * @version $Revision$ + * @since Feb 17, 2002 */ public class DefaultTableMetaData extends AbstractTableMetaData Index: FilteredDataSet.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/FilteredDataSet.java,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** FilteredDataSet.java 18 Jan 2004 16:39:23 -0000 1.15 --- FilteredDataSet.java 22 Jan 2004 02:54:18 -0000 1.16 *************** *** 1,7 **** /* - * FilteredDataSet.java Feb 22, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 23,28 **** package org.dbunit.dataset; ! import org.dbunit.dataset.filter.SequenceTableFilter; import org.dbunit.dataset.filter.ITableFilter; /** --- 22,29 ---- package org.dbunit.dataset; ! import org.dbunit.dataset.filter.ExcludeTableFilter; import org.dbunit.dataset.filter.ITableFilter; + import org.dbunit.dataset.filter.IncludeTableFilter; + import org.dbunit.dataset.filter.SequenceTableFilter; /** *************** *** 37,40 **** --- 38,42 ---- * @author Manuel Laflamme * @version $Revision$ + * @since Feb 22, 2002 */ public class FilteredDataSet extends AbstractDataSet Index: ForwardOnlyDataSet.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/ForwardOnlyDataSet.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** ForwardOnlyDataSet.java 18 Jan 2004 16:39:23 -0000 1.2 --- ForwardOnlyDataSet.java 22 Jan 2004 02:54:18 -0000 1.3 *************** *** 2,6 **** * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 2,6 ---- * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or Index: ForwardOnlyTable.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/ForwardOnlyTable.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ForwardOnlyTable.java 13 Apr 2003 02:40:10 -0000 1.1 --- ForwardOnlyTable.java 22 Jan 2004 02:54:18 -0000 1.2 *************** *** 2,6 **** * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 2,6 ---- * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or Index: IDataSet.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/IDataSet.java,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** IDataSet.java 9 Aug 2003 11:23:19 -0000 1.13 --- IDataSet.java 22 Jan 2004 02:54:18 -0000 1.14 *************** *** 1,7 **** /* - * IDataSet.java Feb 17, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 28,31 **** --- 27,31 ---- * @author Manuel Laflamme * @version $Revision$ + * @since Feb 17, 2002 */ public interface IDataSet Index: ITable.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/ITable.java,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** ITable.java 13 Jun 2002 17:24:56 -0000 1.8 --- ITable.java 22 Jan 2004 02:54:18 -0000 1.9 *************** *** 1,7 **** /* - * ITable.java Feb 17, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 29,32 **** --- 28,32 ---- * @author Manuel Laflamme * @version $Revision$ + * @since Feb 17, 2002 */ public interface ITable Index: ITableIterator.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/ITableIterator.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** ITableIterator.java 9 Apr 2003 22:52:09 -0000 1.3 --- ITableIterator.java 22 Jan 2004 02:54:18 -0000 1.4 *************** *** 2,6 **** * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 2,6 ---- * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or Index: ITableMetaData.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/ITableMetaData.java,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** ITableMetaData.java 11 Mar 2003 13:02:52 -0000 1.9 --- ITableMetaData.java 22 Jan 2004 02:54:18 -0000 1.10 *************** *** 1,7 **** /* - * ITableDataModel.java Feb 17, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 28,31 **** --- 27,31 ---- * @author Manuel Laflamme * @version $Revision$ + * @since Feb 17, 2002 */ public interface ITableMetaData Index: LowerCaseDataSet.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/LowerCaseDataSet.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** LowerCaseDataSet.java 9 Apr 2003 22:52:09 -0000 1.2 --- LowerCaseDataSet.java 22 Jan 2004 02:54:18 -0000 1.3 *************** *** 1,7 **** /* - * DefaultDataSet.java Feb 14, 2003 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 31,34 **** --- 30,34 ---- * @author Manuel Laflamme * @version $Revision$ + * @since Feb 14, 2003 */ public class LowerCaseDataSet extends AbstractDataSet Index: LowerCaseTableMetaData.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/LowerCaseTableMetaData.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** LowerCaseTableMetaData.java 15 Feb 2003 05:42:42 -0000 1.1 --- LowerCaseTableMetaData.java 22 Jan 2004 02:54:18 -0000 1.2 *************** *** 1,7 **** /* - * DefaultTableMetaData.java Feb 14, 2003 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 31,34 **** --- 30,34 ---- * @author Manuel Laflamme * @version $Revision$ + * @since Feb 14, 2003 */ public class LowerCaseTableMetaData extends AbstractTableMetaData Index: NoColumnsFoundException.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/NoColumnsFoundException.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** NoColumnsFoundException.java 14 Feb 2003 05:02:28 -0000 1.1 --- NoColumnsFoundException.java 22 Jan 2004 02:54:18 -0000 1.2 *************** *** 1,7 **** /* - * DataSetException.java Feb 13, 2003 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 27,30 **** --- 26,30 ---- * @author Manuel Laflamme * @version $Revision$ + * @since Feb 13, 2003 */ public class NoColumnsFoundException extends DataSetException Index: NoPrimaryKeyException.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/NoPrimaryKeyException.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** NoPrimaryKeyException.java 13 Jun 2002 17:24:56 -0000 1.6 --- NoPrimaryKeyException.java 22 Jan 2004 02:54:18 -0000 1.7 *************** *** 1,7 **** /* - * DataSetException.java Feb 19, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 27,30 **** --- 26,30 ---- * @author Manuel Laflamme * @version $Revision$ + * @since Feb 19, 2002 */ public class NoPrimaryKeyException extends DataSetException Index: NoSuchColumnException.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/NoSuchColumnException.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** NoSuchColumnException.java 13 Jun 2002 17:24:56 -0000 1.6 --- NoSuchColumnException.java 22 Jan 2004 02:54:18 -0000 1.7 *************** *** 1,7 **** /* - * DataSetException.java Feb 17, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 27,30 **** --- 26,30 ---- * @author Manuel Laflamme * @version $Revision$ + * @since Feb 17, 2002 */ public class NoSuchColumnException extends DataSetException Index: NoSuchTableException.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/NoSuchTableException.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** NoSuchTableException.java 13 Jun 2002 17:24:56 -0000 1.6 --- NoSuchTableException.java 22 Jan 2004 02:54:18 -0000 1.7 *************** *** 1,7 **** /* - * DataSetException.java Feb 17, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 27,30 **** --- 26,30 ---- * @author Manuel Laflamme * @version $Revision$ + * @since Feb 17, 2002 */ public class NoSuchTableException extends DataSetException Index: ReplacementDataSet.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/ReplacementDataSet.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** ReplacementDataSet.java 9 Apr 2003 22:52:09 -0000 1.5 --- ReplacementDataSet.java 22 Jan 2004 02:54:18 -0000 1.6 *************** *** 2,6 **** * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 2,6 ---- * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or Index: ReplacementTable.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/ReplacementTable.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** ReplacementTable.java 23 Mar 2003 04:31:55 -0000 1.4 --- ReplacementTable.java 22 Jan 2004 02:54:18 -0000 1.5 *************** *** 2,6 **** * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 2,6 ---- * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or Index: RowOutOfBoundsException.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/RowOutOfBoundsException.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** RowOutOfBoundsException.java 13 Jun 2002 17:24:56 -0000 1.6 --- RowOutOfBoundsException.java 22 Jan 2004 02:54:18 -0000 1.7 *************** *** 1,7 **** /* - * DataSetException.java Feb 17, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 27,30 **** --- 26,30 ---- * @author Manuel Laflamme * @version $Revision$ + * @since Feb 17, 2002 */ Index: SortedDataSet.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/SortedDataSet.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** SortedDataSet.java 9 Apr 2003 22:52:09 -0000 1.2 --- SortedDataSet.java 22 Jan 2004 02:54:18 -0000 1.3 *************** *** 1,7 **** /* - * DefaultDataSet.java Feb 19, 2003 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 27,30 **** --- 26,30 ---- * @author Manuel Laflamme * @version $Revision$ + * @since Feb 19, 2003 */ public class SortedDataSet extends AbstractDataSet Index: SortedTable.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/SortedTable.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** SortedTable.java 9 Apr 2003 22:52:09 -0000 1.4 --- SortedTable.java 22 Jan 2004 02:54:18 -0000 1.5 *************** *** 1,7 **** /* - * DefaultTable.java Feb 19, 2003 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 35,38 **** --- 34,38 ---- * @author Manuel Laflamme * @version $Revision$ + * @since Feb 19, 2003 */ public class SortedTable extends AbstractTable |
Update of /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/datatype In directory sc8-pr-cvs1:/tmp/cvs-serv22463/src/java/org/dbunit/dataset/datatype Modified Files: AbstractDataType.java BlobDataType.java BooleanDataType.java BytesDataType.java ClobDataType.java DataType.java DataTypeException.java DateDataType.java DefaultDataTypeFactory.java DoubleDataType.java FloatDataType.java IDataTypeFactory.java IntegerDataType.java LongDataType.java NumberDataType.java StringDataType.java TimeDataType.java TimestampDataType.java TypeCastException.java UnknownDataType.java Log Message: Standardized usage of "DbUnit.org" in license statement. Also optimized imports and added @since Javadoc tag to most files missing it. Index: AbstractDataType.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/datatype/AbstractDataType.java,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** AbstractDataType.java 20 May 2003 01:01:20 -0000 1.8 --- AbstractDataType.java 22 Jan 2004 02:54:18 -0000 1.9 *************** *** 1,7 **** /* - * AbstractDataType.java Mar 19, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 23,33 **** package org.dbunit.dataset.datatype; import java.sql.ResultSet; import java.sql.SQLException; - import java.sql.PreparedStatement; /** * @author Manuel Laflamme * @version $Revision$ */ public abstract class AbstractDataType extends DataType --- 22,33 ---- package org.dbunit.dataset.datatype; + import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; /** * @author Manuel Laflamme * @version $Revision$ + * @since Mar 19, 2002 */ public abstract class AbstractDataType extends DataType Index: BlobDataType.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/datatype/BlobDataType.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** BlobDataType.java 12 Jan 2004 18:18:18 -0000 1.1 --- BlobDataType.java 22 Jan 2004 02:54:18 -0000 1.2 *************** *** 1,6 **** /* * ! * DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * ! * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 22,29 **** package org.dbunit.dataset.datatype; ! import java.sql.Types; import java.sql.ResultSet; import java.sql.SQLException; ! import java.sql.PreparedStatement; /** --- 22,29 ---- package org.dbunit.dataset.datatype; ! import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; ! import java.sql.Types; /** Index: BooleanDataType.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/datatype/BooleanDataType.java,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** BooleanDataType.java 13 Aug 2003 01:53:58 -0000 1.12 --- BooleanDataType.java 22 Jan 2004 02:54:18 -0000 1.13 *************** *** 2,6 **** * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 2,6 ---- * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 22,29 **** package org.dbunit.dataset.datatype; ! import java.sql.Types; import java.sql.ResultSet; import java.sql.SQLException; ! import java.sql.PreparedStatement; /** --- 22,29 ---- package org.dbunit.dataset.datatype; ! import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; ! import java.sql.Types; /** Index: BytesDataType.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/datatype/BytesDataType.java,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** BytesDataType.java 12 Jan 2004 18:18:18 -0000 1.12 --- BytesDataType.java 22 Jan 2004 02:54:18 -0000 1.13 *************** *** 1,7 **** /* - * BytesDataType.java Mar 20, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 26,36 **** import java.sql.Blob; - import java.sql.SQLException; - import java.sql.ResultSet; import java.sql.PreparedStatement; /** * @author Manuel Laflamme * @version $Revision$ */ public class BytesDataType extends AbstractDataType --- 25,36 ---- import java.sql.Blob; import java.sql.PreparedStatement; + import java.sql.ResultSet; + import java.sql.SQLException; /** * @author Manuel Laflamme * @version $Revision$ + * @since Mar 20, 2002 */ public class BytesDataType extends AbstractDataType Index: ClobDataType.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/datatype/ClobDataType.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ClobDataType.java 12 Jan 2004 18:18:18 -0000 1.1 --- ClobDataType.java 22 Jan 2004 02:54:18 -0000 1.2 *************** *** 1,6 **** /* * ! * DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * ! * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 22,29 **** package org.dbunit.dataset.datatype; ! import java.sql.Types; import java.sql.ResultSet; import java.sql.SQLException; ! import java.sql.PreparedStatement; /** --- 22,29 ---- package org.dbunit.dataset.datatype; ! import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; ! import java.sql.Types; /** Index: DataType.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/datatype/DataType.java,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** DataType.java 12 Jan 2004 18:18:18 -0000 1.22 --- DataType.java 22 Jan 2004 02:54:18 -0000 1.23 *************** *** 2,6 **** * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 2,6 ---- * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 22,29 **** package org.dbunit.dataset.datatype; ! import java.sql.Types; import java.sql.ResultSet; import java.sql.SQLException; ! import java.sql.PreparedStatement; --- 22,29 ---- package org.dbunit.dataset.datatype; ! import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; ! import java.sql.Types; Index: DataTypeException.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/datatype/DataTypeException.java,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** DataTypeException.java 13 Jun 2002 17:24:56 -0000 1.8 --- DataTypeException.java 22 Jan 2004 02:54:18 -0000 1.9 *************** *** 2,6 **** * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 2,6 ---- * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or Index: DateDataType.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/datatype/DateDataType.java,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** DateDataType.java 5 Dec 2003 02:25:59 -0000 1.11 --- DateDataType.java 22 Jan 2004 02:54:18 -0000 1.12 *************** *** 1,7 **** /* - * DateDataType.java Feb 19, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 23,34 **** package org.dbunit.dataset.datatype; ! import java.sql.Types; import java.sql.ResultSet; import java.sql.SQLException; ! import java.sql.PreparedStatement; /** * @author Manuel Laflamme * @version $Revision$ */ public class DateDataType extends AbstractDataType --- 22,34 ---- package org.dbunit.dataset.datatype; ! import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; ! import java.sql.Types; /** * @author Manuel Laflamme * @version $Revision$ + * @since Feb 19, 2002 */ public class DateDataType extends AbstractDataType Index: DefaultDataTypeFactory.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/datatype/DefaultDataTypeFactory.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** DefaultDataTypeFactory.java 9 Oct 2003 17:48:37 -0000 1.4 --- DefaultDataTypeFactory.java 22 Jan 2004 02:54:18 -0000 1.5 *************** *** 2,6 **** * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 2,6 ---- * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or Index: DoubleDataType.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/datatype/DoubleDataType.java,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** DoubleDataType.java 13 Aug 2003 01:53:58 -0000 1.11 --- DoubleDataType.java 22 Jan 2004 02:54:18 -0000 1.12 *************** *** 2,6 **** * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 2,6 ---- * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 23,29 **** import java.math.BigDecimal; import java.sql.ResultSet; import java.sql.SQLException; - import java.sql.PreparedStatement; /** --- 23,29 ---- import java.math.BigDecimal; + import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; /** Index: FloatDataType.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/datatype/FloatDataType.java,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** FloatDataType.java 13 Aug 2003 01:53:58 -0000 1.11 --- FloatDataType.java 22 Jan 2004 02:54:18 -0000 1.12 *************** *** 2,6 **** * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 2,6 ---- * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 23,30 **** import java.math.BigDecimal; ! import java.sql.Types; import java.sql.ResultSet; import java.sql.SQLException; ! import java.sql.PreparedStatement; /** --- 23,30 ---- import java.math.BigDecimal; ! import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; ! import java.sql.Types; /** Index: IDataTypeFactory.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/datatype/IDataTypeFactory.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** IDataTypeFactory.java 19 May 2003 22:09:21 -0000 1.1 --- IDataTypeFactory.java 22 Jan 2004 02:54:18 -0000 1.2 *************** *** 2,6 **** * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 2,6 ---- * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or Index: IntegerDataType.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/datatype/IntegerDataType.java,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** IntegerDataType.java 13 Aug 2003 01:53:58 -0000 1.11 --- IntegerDataType.java 22 Jan 2004 02:54:18 -0000 1.12 *************** *** 2,6 **** * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 2,6 ---- * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 23,29 **** import java.math.BigDecimal; import java.sql.ResultSet; import java.sql.SQLException; - import java.sql.PreparedStatement; /** --- 23,29 ---- import java.math.BigDecimal; + import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; /** Index: LongDataType.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/datatype/LongDataType.java,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** LongDataType.java 13 Aug 2003 01:53:58 -0000 1.11 --- LongDataType.java 22 Jan 2004 02:54:18 -0000 1.12 *************** *** 2,6 **** * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 2,6 ---- * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 23,30 **** import java.math.BigDecimal; ! import java.sql.Types; import java.sql.ResultSet; import java.sql.SQLException; ! import java.sql.PreparedStatement; /** --- 23,30 ---- import java.math.BigDecimal; ! import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; ! import java.sql.Types; /** Index: NumberDataType.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/datatype/NumberDataType.java,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** NumberDataType.java 17 May 2003 15:38:52 -0000 1.10 --- NumberDataType.java 22 Jan 2004 02:54:18 -0000 1.11 *************** *** 1,7 **** /* - * NumberDataType.java Feb 17, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 24,34 **** import java.math.BigDecimal; import java.sql.ResultSet; import java.sql.SQLException; - import java.sql.PreparedStatement; /** * @author Manuel Laflamme * @version $Revision$ */ public class NumberDataType extends AbstractDataType --- 23,34 ---- import java.math.BigDecimal; + import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; /** * @author Manuel Laflamme * @version $Revision$ + * @since Feb 17, 2002 */ public class NumberDataType extends AbstractDataType Index: StringDataType.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/datatype/StringDataType.java,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** StringDataType.java 12 Jan 2004 18:18:18 -0000 1.19 --- StringDataType.java 22 Jan 2004 02:54:18 -0000 1.20 *************** *** 2,6 **** * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 2,6 ---- * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 24,28 **** import org.dbunit.util.Base64; ! import java.sql.*; /** --- 24,32 ---- import org.dbunit.util.Base64; ! import java.sql.Blob; ! import java.sql.Clob; ! import java.sql.PreparedStatement; ! import java.sql.ResultSet; ! import java.sql.SQLException; /** Index: TimeDataType.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/datatype/TimeDataType.java,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** TimeDataType.java 17 May 2003 15:38:52 -0000 1.10 --- TimeDataType.java 22 Jan 2004 02:54:18 -0000 1.11 *************** *** 1,7 **** /* - * TimeDataType.java Feb 19, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 23,35 **** package org.dbunit.dataset.datatype; ! import java.sql.Time; ! import java.sql.Types; import java.sql.ResultSet; import java.sql.SQLException; ! import java.sql.PreparedStatement; /** * @author Manuel Laflamme * @version $Revision$ */ public class TimeDataType extends AbstractDataType --- 22,35 ---- package org.dbunit.dataset.datatype; ! import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; ! import java.sql.Time; ! import java.sql.Types; /** * @author Manuel Laflamme * @version $Revision$ + * @since Feb 19, 2002 */ public class TimeDataType extends AbstractDataType Index: TimestampDataType.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/datatype/TimestampDataType.java,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** TimestampDataType.java 5 Dec 2003 02:25:59 -0000 1.11 --- TimestampDataType.java 22 Jan 2004 02:54:18 -0000 1.12 *************** *** 1,7 **** /* - * TimestampDataType.java Feb 19, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 23,35 **** package org.dbunit.dataset.datatype; ! import java.sql.Timestamp; ! import java.sql.Types; import java.sql.ResultSet; import java.sql.SQLException; ! import java.sql.PreparedStatement; /** * @author Manuel Laflamme * @version $Revision$ */ public class TimestampDataType extends AbstractDataType --- 22,35 ---- package org.dbunit.dataset.datatype; ! import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; ! import java.sql.Timestamp; ! import java.sql.Types; /** * @author Manuel Laflamme * @version $Revision$ + * @since Feb 19, 2002 */ public class TimestampDataType extends AbstractDataType Index: TypeCastException.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/datatype/TypeCastException.java,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** TypeCastException.java 13 Jun 2002 17:24:57 -0000 1.9 --- TypeCastException.java 22 Jan 2004 02:54:18 -0000 1.10 *************** *** 2,6 **** * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 2,6 ---- * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or Index: UnknownDataType.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/datatype/UnknownDataType.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** UnknownDataType.java 31 Mar 2003 13:22:00 -0000 1.2 --- UnknownDataType.java 22 Jan 2004 02:54:18 -0000 1.3 *************** *** 2,6 **** * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 2,6 ---- * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or |
From: <mla...@us...> - 2004-01-22 02:54:54
|
Update of /cvsroot/dbunit/dbunit/src/java/org/dbunit/ext/oracle In directory sc8-pr-cvs1:/tmp/cvs-serv22463/src/java/org/dbunit/ext/oracle Modified Files: OracleClobDataType.java OracleConnection.java Log Message: Standardized usage of "DbUnit.org" in license statement. Also optimized imports and added @since Javadoc tag to most files missing it. Index: OracleClobDataType.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/ext/oracle/OracleClobDataType.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** OracleClobDataType.java 12 Jan 2004 18:18:19 -0000 1.1 --- OracleClobDataType.java 22 Jan 2004 02:54:19 -0000 1.2 *************** *** 1,15 **** - package org.dbunit.ext.oracle; - - import org.dbunit.dataset.datatype.ClobDataType; - import org.dbunit.dataset.datatype.TypeCastException; - - import java.io.IOException; - import java.io.Writer; - import java.lang.reflect.InvocationTargetException; - import java.lang.reflect.Method; /* * ! * DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * ! * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 28,32 **** --- 19,31 ---- * */ + package org.dbunit.ext.oracle; + + import org.dbunit.dataset.datatype.ClobDataType; + import org.dbunit.dataset.datatype.TypeCastException; + import java.io.IOException; + import java.io.Writer; + import java.lang.reflect.InvocationTargetException; + import java.lang.reflect.Method; import java.sql.Connection; import java.sql.PreparedStatement; Index: OracleConnection.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/ext/oracle/OracleConnection.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** OracleConnection.java 4 Sep 2003 16:50:17 -0000 1.3 --- OracleConnection.java 22 Jan 2004 02:54:19 -0000 1.4 *************** *** 2,6 **** * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 2,6 ---- * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or |
From: <mla...@us...> - 2004-01-22 02:54:54
|
Update of /cvsroot/dbunit/dbunit/src/java/org/dbunit/ext/mssql In directory sc8-pr-cvs1:/tmp/cvs-serv22463/src/java/org/dbunit/ext/mssql Modified Files: InsertIdentityOperation.java MsSqlConnection.java MsSqlDataTypeFactory.java Log Message: Standardized usage of "DbUnit.org" in license statement. Also optimized imports and added @since Javadoc tag to most files missing it. Index: InsertIdentityOperation.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/ext/mssql/InsertIdentityOperation.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** InsertIdentityOperation.java 19 Jan 2004 21:38:03 -0000 1.1 --- InsertIdentityOperation.java 22 Jan 2004 02:54:19 -0000 1.2 *************** *** 3,7 **** * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 3,7 ---- * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 22,29 **** package org.dbunit.ext.mssql; - import java.sql.Connection; - import java.sql.SQLException; - import java.sql.Statement; - import org.dbunit.DatabaseUnitException; import org.dbunit.database.IDatabaseConnection; --- 22,25 ---- *************** *** 35,42 **** import org.dbunit.dataset.ITableIterator; import org.dbunit.dataset.ITableMetaData; import org.dbunit.operation.CompositeOperation; import org.dbunit.operation.DatabaseOperation; import org.dbunit.operation.ExclusiveTransactionException; ! import org.dbunit.operation.AbstractOperation; /** --- 31,42 ---- import org.dbunit.dataset.ITableIterator; import org.dbunit.dataset.ITableMetaData; + import org.dbunit.operation.AbstractOperation; import org.dbunit.operation.CompositeOperation; import org.dbunit.operation.DatabaseOperation; import org.dbunit.operation.ExclusiveTransactionException; ! ! import java.sql.Connection; ! import java.sql.SQLException; ! import java.sql.Statement; /** Index: MsSqlConnection.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/ext/mssql/MsSqlConnection.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** MsSqlConnection.java 19 Jan 2004 21:38:03 -0000 1.1 --- MsSqlConnection.java 22 Jan 2004 02:54:19 -0000 1.2 *************** *** 2,6 **** * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 2,6 ---- * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or Index: MsSqlDataTypeFactory.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/ext/mssql/MsSqlDataTypeFactory.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** MsSqlDataTypeFactory.java 19 Jan 2004 21:38:03 -0000 1.1 --- MsSqlDataTypeFactory.java 22 Jan 2004 02:54:19 -0000 1.2 *************** *** 2,6 **** * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 2,6 ---- * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or |
From: <mla...@us...> - 2004-01-22 02:54:54
|
Update of /cvsroot/dbunit/dbunit/src/java/org/dbunit/ext/db2 In directory sc8-pr-cvs1:/tmp/cvs-serv22463/src/java/org/dbunit/ext/db2 Modified Files: Db2Connection.java Db2DataTypeFactory.java Log Message: Standardized usage of "DbUnit.org" in license statement. Also optimized imports and added @since Javadoc tag to most files missing it. Index: Db2Connection.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/ext/db2/Db2Connection.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Db2Connection.java 1 Aug 2003 02:29:11 -0000 1.2 --- Db2Connection.java 22 Jan 2004 02:54:19 -0000 1.3 *************** *** 1,7 **** /* - * Db2Connection.java * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 28,31 **** --- 27,35 ---- import java.sql.Connection; + /** + * @author Federico Spinazzi + * @since Jul 17, 2003 + * @version $Revision$ + */ public class Db2Connection extends DatabaseConnection { Index: Db2DataTypeFactory.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/ext/db2/Db2DataTypeFactory.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Db2DataTypeFactory.java 18 Aug 2003 11:13:08 -0000 1.2 --- Db2DataTypeFactory.java 22 Jan 2004 02:54:19 -0000 1.3 *************** *** 1,7 **** /* - * Db2DataTypeFactory.java * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 30,33 **** --- 29,40 ---- import java.sql.Types; + /** + * Specialized factory that recognizes DB2 data types. + * + * @author Federico Spinazzi + * @author Manuel Laflamme + * @since Jul 17, 2003 + * @version $Revision$ + */ public class Db2DataTypeFactory extends DefaultDataTypeFactory { |
From: <mla...@us...> - 2004-01-22 02:54:53
|
Update of /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/xml In directory sc8-pr-cvs1:/tmp/cvs-serv22463/src/java/org/dbunit/dataset/xml Modified Files: FlatDtdDataSet.java FlatDtdProducer.java FlatDtdWriter.java FlatXmlDataSet.java FlatXmlProducer.java FlatXmlWriter.java XmlDataSet.java XmlDataSetWriter.java XmlProducer.java Log Message: Standardized usage of "DbUnit.org" in license statement. Also optimized imports and added @since Javadoc tag to most files missing it. Index: FlatDtdDataSet.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/xml/FlatDtdDataSet.java,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** FlatDtdDataSet.java 10 Oct 2003 21:12:37 -0000 1.10 --- FlatDtdDataSet.java 22 Jan 2004 02:54:19 -0000 1.11 *************** *** 1,9 **** /* - * FlatDtdDataSet.java Apr 4, 2002 * ! * Copyright (c)2002 Manuel Laflamme. All Rights Reserved. * ! * This software is the proprietary information of Manuel Laflamme. ! * Use is subject to license terms. * */ --- 1,20 ---- /* * ! * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * ! * 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 * */ *************** *** 11,14 **** --- 22,39 ---- package org.dbunit.dataset.xml; + import org.dbunit.dataset.AbstractDataSet; + import org.dbunit.dataset.DataSetException; + import org.dbunit.dataset.DefaultTable; + import org.dbunit.dataset.DefaultTableIterator; + import org.dbunit.dataset.IDataSet; + import org.dbunit.dataset.ITable; + import org.dbunit.dataset.ITableIterator; + import org.dbunit.dataset.ITableMetaData; + import org.dbunit.dataset.NoSuchTableException; + import org.dbunit.dataset.stream.IDataSetConsumer; + import org.dbunit.dataset.stream.IDataSetProducer; + + import org.xml.sax.InputSource; + import java.io.IOException; import java.io.InputStream; *************** *** 23,42 **** import java.util.Map; - import org.dbunit.dataset.AbstractDataSet; - import org.dbunit.dataset.DataSetException; - import org.dbunit.dataset.DefaultTable; - import org.dbunit.dataset.DefaultTableIterator; - import org.dbunit.dataset.IDataSet; - import org.dbunit.dataset.stream.IDataSetConsumer; - import org.dbunit.dataset.stream.IDataSetProducer; - import org.dbunit.dataset.ITable; - import org.dbunit.dataset.ITableIterator; - import org.dbunit.dataset.ITableMetaData; - import org.dbunit.dataset.NoSuchTableException; - import org.xml.sax.InputSource; - /** * @author Manuel Laflamme * @version $Revision$ */ public class FlatDtdDataSet extends AbstractDataSet implements IDataSetConsumer --- 48,55 ---- import java.util.Map; /** * @author Manuel Laflamme * @version $Revision$ + * @since Apr 4, 2002 */ public class FlatDtdDataSet extends AbstractDataSet implements IDataSetConsumer Index: FlatDtdProducer.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/xml/FlatDtdProducer.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** FlatDtdProducer.java 10 Oct 2003 21:12:37 -0000 1.3 --- FlatDtdProducer.java 22 Jan 2004 02:54:19 -0000 1.4 *************** *** 2,6 **** * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 2,6 ---- * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 23,31 **** import org.dbunit.dataset.Column; import org.dbunit.dataset.DataSetException; - import org.dbunit.dataset.stream.DefaultConsumer; import org.dbunit.dataset.DefaultTableMetaData; import org.dbunit.dataset.stream.IDataSetConsumer; import org.dbunit.dataset.stream.IDataSetProducer; - import org.dbunit.dataset.datatype.DataType; import org.xml.sax.EntityResolver; --- 23,31 ---- import org.dbunit.dataset.Column; import org.dbunit.dataset.DataSetException; import org.dbunit.dataset.DefaultTableMetaData; + import org.dbunit.dataset.datatype.DataType; + import org.dbunit.dataset.stream.DefaultConsumer; import org.dbunit.dataset.stream.IDataSetConsumer; import org.dbunit.dataset.stream.IDataSetProducer; import org.xml.sax.EntityResolver; Index: FlatDtdWriter.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/xml/FlatDtdWriter.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** FlatDtdWriter.java 9 Aug 2003 11:23:22 -0000 1.3 --- FlatDtdWriter.java 22 Jan 2004 02:54:19 -0000 1.4 *************** *** 2,6 **** * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 2,6 ---- * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 21,31 **** package org.dbunit.dataset.xml; - import java.io.PrintWriter; - import java.io.Writer; - import org.dbunit.dataset.Column; import org.dbunit.dataset.DataSetException; import org.dbunit.dataset.IDataSet; /** * @author Manuel Laflamme --- 21,31 ---- package org.dbunit.dataset.xml; import org.dbunit.dataset.Column; import org.dbunit.dataset.DataSetException; import org.dbunit.dataset.IDataSet; + import java.io.PrintWriter; + import java.io.Writer; + /** * @author Manuel Laflamme Index: FlatXmlDataSet.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/xml/FlatXmlDataSet.java,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** FlatXmlDataSet.java 18 Jan 2004 16:39:24 -0000 1.24 --- FlatXmlDataSet.java 22 Jan 2004 02:54:19 -0000 1.25 *************** *** 1,7 **** /* - * FlatXmlDataSet.java Mar 12, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 23,26 **** --- 22,33 ---- package org.dbunit.dataset.xml; + import org.dbunit.dataset.CachedDataSet; + import org.dbunit.dataset.DataSetException; + import org.dbunit.dataset.IDataSet; + + import org.xml.sax.EntityResolver; + import org.xml.sax.InputSource; + import org.xml.sax.SAXException; + import java.io.File; import java.io.IOException; *************** *** 31,41 **** import java.io.Writer; - import org.dbunit.dataset.CachedDataSet; - import org.dbunit.dataset.DataSetException; - import org.dbunit.dataset.IDataSet; - import org.xml.sax.EntityResolver; - import org.xml.sax.InputSource; - import org.xml.sax.SAXException; - /** * Reads and writes flat XML dataset document. Each XML element corresponds to a table row. --- 38,41 ---- *************** *** 68,71 **** --- 68,72 ---- * @author Manuel Laflamme * @version $Revision$ + * @since Mar 12, 2002 */ public class FlatXmlDataSet extends CachedDataSet Index: FlatXmlProducer.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/xml/FlatXmlProducer.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** FlatXmlProducer.java 16 Oct 2003 15:47:22 -0000 1.5 --- FlatXmlProducer.java 22 Jan 2004 02:54:19 -0000 1.6 *************** *** 2,6 **** * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 2,6 ---- * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 21,39 **** package org.dbunit.dataset.xml; - import java.io.IOException; - import java.io.StringReader; - - import javax.xml.parsers.ParserConfigurationException; - import javax.xml.parsers.SAXParserFactory; - import org.dbunit.dataset.Column; import org.dbunit.dataset.DataSetException; - import org.dbunit.dataset.stream.DefaultConsumer; import org.dbunit.dataset.DefaultTableMetaData; import org.dbunit.dataset.IDataSet; - import org.dbunit.dataset.stream.IDataSetConsumer; - import org.dbunit.dataset.stream.IDataSetProducer; import org.dbunit.dataset.ITableMetaData; import org.dbunit.dataset.datatype.DataType; import org.xml.sax.Attributes; import org.xml.sax.ContentHandler; --- 21,34 ---- package org.dbunit.dataset.xml; import org.dbunit.dataset.Column; import org.dbunit.dataset.DataSetException; import org.dbunit.dataset.DefaultTableMetaData; import org.dbunit.dataset.IDataSet; import org.dbunit.dataset.ITableMetaData; import org.dbunit.dataset.datatype.DataType; + import org.dbunit.dataset.stream.DefaultConsumer; + import org.dbunit.dataset.stream.IDataSetConsumer; + import org.dbunit.dataset.stream.IDataSetProducer; + import org.xml.sax.Attributes; import org.xml.sax.ContentHandler; *************** *** 41,48 **** import org.xml.sax.InputSource; import org.xml.sax.SAXException; - import org.xml.sax.XMLReader; import org.xml.sax.SAXParseException; import org.xml.sax.helpers.DefaultHandler; /** * @author Manuel Laflamme --- 36,48 ---- import org.xml.sax.InputSource; import org.xml.sax.SAXException; import org.xml.sax.SAXParseException; + import org.xml.sax.XMLReader; import org.xml.sax.helpers.DefaultHandler; + import javax.xml.parsers.ParserConfigurationException; + import javax.xml.parsers.SAXParserFactory; + import java.io.IOException; + import java.io.StringReader; + /** * @author Manuel Laflamme Index: FlatXmlWriter.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/xml/FlatXmlWriter.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** FlatXmlWriter.java 10 Oct 2003 21:12:37 -0000 1.4 --- FlatXmlWriter.java 22 Jan 2004 02:54:19 -0000 1.5 *************** *** 2,6 **** * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 2,6 ---- * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 23,33 **** import org.dbunit.dataset.Column; import org.dbunit.dataset.DataSetException; - import org.dbunit.dataset.stream.DataSetProducerAdapter; import org.dbunit.dataset.IDataSet; - import org.dbunit.dataset.stream.IDataSetConsumer; import org.dbunit.dataset.ITableMetaData; import org.dbunit.dataset.datatype.DataType; import org.dbunit.dataset.datatype.TypeCastException; ! import org.dbunit.util.xml.XmlWriter; --- 23,32 ---- import org.dbunit.dataset.Column; import org.dbunit.dataset.DataSetException; import org.dbunit.dataset.IDataSet; import org.dbunit.dataset.ITableMetaData; import org.dbunit.dataset.datatype.DataType; import org.dbunit.dataset.datatype.TypeCastException; ! import org.dbunit.dataset.stream.DataSetProducerAdapter; ! import org.dbunit.dataset.stream.IDataSetConsumer; import org.dbunit.util.xml.XmlWriter; Index: XmlDataSet.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/xml/XmlDataSet.java,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** XmlDataSet.java 18 Jan 2004 16:39:24 -0000 1.18 --- XmlDataSet.java 22 Jan 2004 02:54:19 -0000 1.19 *************** *** 1,7 **** /* - * XmlDataSet.java Feb 17, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 54,57 **** --- 53,57 ---- * @author Manuel Laflamme * @version $Revision$ + * @since Feb 17, 2002 */ public class XmlDataSet extends CachedDataSet Index: XmlDataSetWriter.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/xml/XmlDataSetWriter.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** XmlDataSetWriter.java 10 Oct 2003 21:12:37 -0000 1.3 --- XmlDataSetWriter.java 22 Jan 2004 02:54:19 -0000 1.4 *************** *** 2,6 **** * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 2,6 ---- * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 23,33 **** import org.dbunit.dataset.Column; import org.dbunit.dataset.DataSetException; - import org.dbunit.dataset.stream.DataSetProducerAdapter; import org.dbunit.dataset.IDataSet; - import org.dbunit.dataset.stream.IDataSetConsumer; import org.dbunit.dataset.ITable; import org.dbunit.dataset.ITableMetaData; import org.dbunit.dataset.datatype.DataType; import org.dbunit.dataset.datatype.TypeCastException; import org.dbunit.util.xml.XmlWriter; --- 23,33 ---- import org.dbunit.dataset.Column; import org.dbunit.dataset.DataSetException; import org.dbunit.dataset.IDataSet; import org.dbunit.dataset.ITable; import org.dbunit.dataset.ITableMetaData; import org.dbunit.dataset.datatype.DataType; import org.dbunit.dataset.datatype.TypeCastException; + import org.dbunit.dataset.stream.DataSetProducerAdapter; + import org.dbunit.dataset.stream.IDataSetConsumer; import org.dbunit.util.xml.XmlWriter; Index: XmlProducer.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/xml/XmlProducer.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** XmlProducer.java 10 Oct 2003 21:12:37 -0000 1.4 --- XmlProducer.java 22 Jan 2004 02:54:19 -0000 1.5 *************** *** 2,6 **** * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 2,6 ---- * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 21,41 **** package org.dbunit.dataset.xml; - import java.io.IOException; - import java.io.InputStream; - import java.util.LinkedList; - import java.util.List; - - import javax.xml.parsers.ParserConfigurationException; - import javax.xml.parsers.SAXParserFactory; - import org.dbunit.dataset.Column; import org.dbunit.dataset.DataSetException; - import org.dbunit.dataset.stream.DefaultConsumer; import org.dbunit.dataset.DefaultTableMetaData; - import org.dbunit.dataset.stream.IDataSetConsumer; - import org.dbunit.dataset.stream.IDataSetProducer; import org.dbunit.dataset.ITable; import org.dbunit.dataset.ITableMetaData; import org.dbunit.dataset.datatype.DataType; import org.xml.sax.Attributes; import org.xml.sax.ContentHandler; --- 21,34 ---- package org.dbunit.dataset.xml; import org.dbunit.dataset.Column; import org.dbunit.dataset.DataSetException; import org.dbunit.dataset.DefaultTableMetaData; import org.dbunit.dataset.ITable; import org.dbunit.dataset.ITableMetaData; import org.dbunit.dataset.datatype.DataType; + import org.dbunit.dataset.stream.DefaultConsumer; + import org.dbunit.dataset.stream.IDataSetConsumer; + import org.dbunit.dataset.stream.IDataSetProducer; + import org.xml.sax.Attributes; import org.xml.sax.ContentHandler; *************** *** 47,50 **** --- 40,50 ---- import org.xml.sax.helpers.DefaultHandler; + import javax.xml.parsers.ParserConfigurationException; + import javax.xml.parsers.SAXParserFactory; + import java.io.IOException; + import java.io.InputStream; + import java.util.LinkedList; + import java.util.List; + /** * @author Manuel Laflamme |
From: <mla...@us...> - 2004-01-22 02:54:53
|
Update of /cvsroot/dbunit/dbunit/src/java/org/dbunit/ext/mysql In directory sc8-pr-cvs1:/tmp/cvs-serv22463/src/java/org/dbunit/ext/mysql Modified Files: MySqlConnection.java MySqlDataTypeFactory.java Log Message: Standardized usage of "DbUnit.org" in license statement. Also optimized imports and added @since Javadoc tag to most files missing it. Index: MySqlConnection.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/ext/mysql/MySqlConnection.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** MySqlConnection.java 4 Sep 2003 16:50:17 -0000 1.1 --- MySqlConnection.java 22 Jan 2004 02:54:19 -0000 1.2 *************** *** 2,6 **** * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 2,6 ---- * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or Index: MySqlDataTypeFactory.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/ext/mysql/MySqlDataTypeFactory.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** MySqlDataTypeFactory.java 4 Sep 2003 16:50:17 -0000 1.1 --- MySqlDataTypeFactory.java 22 Jan 2004 02:54:19 -0000 1.2 *************** *** 2,6 **** * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 2,6 ---- * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or |
Update of /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/stream In directory sc8-pr-cvs1:/tmp/cvs-serv22463/src/java/org/dbunit/dataset/stream Modified Files: DataSetProducerAdapter.java DefaultConsumer.java IDataSetConsumer.java IDataSetProducer.java StreamingDataSet.java StreamingIterator.java Log Message: Standardized usage of "DbUnit.org" in license statement. Also optimized imports and added @since Javadoc tag to most files missing it. Index: DataSetProducerAdapter.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/stream/DataSetProducerAdapter.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** DataSetProducerAdapter.java 10 Oct 2003 21:12:37 -0000 1.1 --- DataSetProducerAdapter.java 22 Jan 2004 02:54:19 -0000 1.2 *************** *** 2,6 **** * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 2,6 ---- * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 21,32 **** package org.dbunit.dataset.stream; ! import org.dbunit.dataset.stream.IDataSetProducer; ! import org.dbunit.dataset.stream.IDataSetConsumer; ! import org.dbunit.dataset.ITableIterator; ! import org.dbunit.dataset.IDataSet; import org.dbunit.dataset.DataSetException; import org.dbunit.dataset.ITable; import org.dbunit.dataset.ITableMetaData; - import org.dbunit.dataset.Column; import org.dbunit.dataset.RowOutOfBoundsException; --- 21,30 ---- package org.dbunit.dataset.stream; ! import org.dbunit.dataset.Column; import org.dbunit.dataset.DataSetException; + import org.dbunit.dataset.IDataSet; import org.dbunit.dataset.ITable; + import org.dbunit.dataset.ITableIterator; import org.dbunit.dataset.ITableMetaData; import org.dbunit.dataset.RowOutOfBoundsException; Index: DefaultConsumer.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/stream/DefaultConsumer.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** DefaultConsumer.java 10 Oct 2003 21:12:37 -0000 1.1 --- DefaultConsumer.java 22 Jan 2004 02:54:19 -0000 1.2 *************** *** 2,6 **** * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 2,6 ---- * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 21,25 **** package org.dbunit.dataset.stream; - import org.dbunit.dataset.stream.IDataSetConsumer; import org.dbunit.dataset.DataSetException; import org.dbunit.dataset.ITableMetaData; --- 21,24 ---- Index: IDataSetConsumer.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/stream/IDataSetConsumer.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** IDataSetConsumer.java 10 Oct 2003 21:12:37 -0000 1.1 --- IDataSetConsumer.java 22 Jan 2004 02:54:19 -0000 1.2 *************** *** 2,6 **** * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 2,6 ---- * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or Index: IDataSetProducer.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/stream/IDataSetProducer.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** IDataSetProducer.java 10 Oct 2003 21:12:37 -0000 1.1 --- IDataSetProducer.java 22 Jan 2004 02:54:19 -0000 1.2 *************** *** 2,6 **** * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 2,6 ---- * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or Index: StreamingDataSet.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/stream/StreamingDataSet.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** StreamingDataSet.java 18 Jan 2004 16:39:23 -0000 1.2 --- StreamingDataSet.java 22 Jan 2004 02:54:19 -0000 1.3 *************** *** 2,6 **** * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 2,6 ---- * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 26,30 **** import org.dbunit.dataset.ITableIterator; import org.dbunit.dataset.ITableMetaData; - import org.dbunit.dataset.stream.StreamingIterator; /** --- 26,29 ---- Index: StreamingIterator.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/stream/StreamingIterator.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** StreamingIterator.java 10 Oct 2003 21:12:37 -0000 1.1 --- StreamingIterator.java 22 Jan 2004 02:54:19 -0000 1.2 *************** *** 2,6 **** * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 2,6 ---- * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 28,32 **** import org.dbunit.dataset.ITableMetaData; import org.dbunit.dataset.RowOutOfBoundsException; - import org.dbunit.util.concurrent.BoundedBuffer; import org.dbunit.util.concurrent.Channel; --- 28,31 ---- |
Update of /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/filter In directory sc8-pr-cvs1:/tmp/cvs-serv22463/src/java/org/dbunit/dataset/filter Modified Files: AbstractTableFilter.java ExcludeTableFilter.java ITableFilter.java IncludeTableFilter.java SequenceTableFilter.java SequenceTableIterator.java Log Message: Standardized usage of "DbUnit.org" in license statement. Also optimized imports and added @since Javadoc tag to most files missing it. Index: AbstractTableFilter.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/filter/AbstractTableFilter.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** AbstractTableFilter.java 9 Apr 2003 22:52:10 -0000 1.2 --- AbstractTableFilter.java 22 Jan 2004 02:54:18 -0000 1.3 *************** *** 2,6 **** * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 2,6 ---- * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or Index: ExcludeTableFilter.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/filter/ExcludeTableFilter.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** ExcludeTableFilter.java 18 Jan 2004 16:39:23 -0000 1.5 --- ExcludeTableFilter.java 22 Jan 2004 02:54:18 -0000 1.6 *************** *** 2,6 **** * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 2,6 ---- * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or Index: ITableFilter.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/filter/ITableFilter.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** ITableFilter.java 9 Aug 2003 11:23:16 -0000 1.3 --- ITableFilter.java 22 Jan 2004 02:54:18 -0000 1.4 *************** *** 2,6 **** * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 2,6 ---- * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 22,25 **** --- 22,26 ---- import org.dbunit.dataset.DataSetException; + import org.dbunit.dataset.FilteredDataSet; import org.dbunit.dataset.IDataSet; import org.dbunit.dataset.ITableIterator; Index: IncludeTableFilter.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/filter/IncludeTableFilter.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** IncludeTableFilter.java 18 Jan 2004 16:39:23 -0000 1.5 --- IncludeTableFilter.java 22 Jan 2004 02:54:18 -0000 1.6 *************** *** 2,6 **** * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 2,6 ---- * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 22,27 **** import java.util.HashSet; - import java.util.Set; import java.util.Iterator; /** --- 22,27 ---- import java.util.HashSet; import java.util.Iterator; + import java.util.Set; /** *************** *** 92,95 **** --- 92,97 ---- private boolean match(String pattern, String str, boolean isCaseSensitive) { + /* Following pattern matching code taken from the Apache Ant project. */ + char[] patArr = pattern.toCharArray(); char[] strArr = str.toCharArray(); Index: SequenceTableFilter.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/filter/SequenceTableFilter.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** SequenceTableFilter.java 9 Apr 2003 22:52:10 -0000 1.2 --- SequenceTableFilter.java 22 Jan 2004 02:54:18 -0000 1.3 *************** *** 2,6 **** * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 2,6 ---- * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 22,26 **** import org.dbunit.database.AmbiguousTableNameException; ! import org.dbunit.dataset.*; import java.util.ArrayList; --- 22,32 ---- import org.dbunit.database.AmbiguousTableNameException; ! import org.dbunit.dataset.DataSetException; ! import org.dbunit.dataset.DataSetUtils; ! import org.dbunit.dataset.FilteredDataSet; ! import org.dbunit.dataset.IDataSet; ! import org.dbunit.dataset.ITableIterator; ! import org.dbunit.dataset.ITableMetaData; ! import org.dbunit.dataset.NoSuchTableException; import java.util.ArrayList; Index: SequenceTableIterator.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/filter/SequenceTableIterator.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** SequenceTableIterator.java 9 Apr 2003 22:52:10 -0000 1.2 --- SequenceTableIterator.java 22 Jan 2004 02:54:18 -0000 1.3 *************** *** 2,6 **** * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 2,6 ---- * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 21,29 **** package org.dbunit.dataset.filter; - import org.dbunit.dataset.ITableIterator; import org.dbunit.dataset.DataSetException; - import org.dbunit.dataset.ITableMetaData; - import org.dbunit.dataset.ITable; import org.dbunit.dataset.IDataSet; /** --- 21,29 ---- package org.dbunit.dataset.filter; import org.dbunit.dataset.DataSetException; import org.dbunit.dataset.IDataSet; + import org.dbunit.dataset.ITable; + import org.dbunit.dataset.ITableIterator; + import org.dbunit.dataset.ITableMetaData; /** |
Update of /cvsroot/dbunit/dbunit/src/java/org/dbunit/database In directory sc8-pr-cvs1:/tmp/cvs-serv22463/src/java/org/dbunit/database Modified Files: AbstractDatabaseConnection.java AbstractResultSetTable.java AmbiguousTableNameException.java CachedResultSetTable.java CachedResultSetTableFactory.java CyclicTablesDependencyException.java DatabaseConfig.java DatabaseConnection.java DatabaseDataSet.java DatabaseDataSourceConnection.java DatabaseSequenceFilter.java DatabaseTableIterator.java DatabaseTableMetaData.java ForwardOnlyResultSetTable.java ForwardOnlyResultSetTableFactory.java IDatabaseConnection.java IResultSetTable.java IResultSetTableFactory.java QueryDataSet.java QueryTableIterator.java ScrollableResultSetTable.java Log Message: Standardized usage of "DbUnit.org" in license statement. Also optimized imports and added @since Javadoc tag to most files missing it. Index: AbstractDatabaseConnection.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/database/AbstractDatabaseConnection.java,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** AbstractDatabaseConnection.java 11 Jan 2004 21:45:38 -0000 1.17 --- AbstractDatabaseConnection.java 22 Jan 2004 02:54:17 -0000 1.18 *************** *** 1,7 **** /* - * AbstractDatabaseConnection.java Mar 6, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 38,41 **** --- 37,41 ---- * @author Manuel Laflamme * @version $Revision$ + * @since Mar 6, 2002 */ public abstract class AbstractDatabaseConnection implements IDatabaseConnection Index: AbstractResultSetTable.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/database/AbstractResultSetTable.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** AbstractResultSetTable.java 16 Sep 2003 05:08:31 -0000 1.4 --- AbstractResultSetTable.java 22 Jan 2004 02:54:17 -0000 1.5 *************** *** 2,6 **** * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 2,6 ---- * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 22,37 **** import org.dbunit.dataset.AbstractTable; - import org.dbunit.dataset.ITableMetaData; - import org.dbunit.dataset.DataSetException; import org.dbunit.dataset.Column; import org.dbunit.dataset.DefaultTableMetaData; import org.dbunit.dataset.datatype.DataType; import org.dbunit.dataset.datatype.IDataTypeFactory; import java.sql.ResultSet; - import java.sql.SQLException; import java.sql.ResultSetMetaData; import java.sql.Statement; - import java.sql.Connection; /** --- 22,37 ---- import org.dbunit.dataset.AbstractTable; import org.dbunit.dataset.Column; + import org.dbunit.dataset.DataSetException; import org.dbunit.dataset.DefaultTableMetaData; + import org.dbunit.dataset.ITableMetaData; import org.dbunit.dataset.datatype.DataType; import org.dbunit.dataset.datatype.IDataTypeFactory; + import java.sql.Connection; import java.sql.ResultSet; import java.sql.ResultSetMetaData; + import java.sql.SQLException; import java.sql.Statement; /** Index: AmbiguousTableNameException.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/database/AmbiguousTableNameException.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** AmbiguousTableNameException.java 13 Jun 2002 17:24:56 -0000 1.3 --- AmbiguousTableNameException.java 22 Jan 2004 02:54:17 -0000 1.4 *************** *** 1,7 **** /* - * AmbiguousTableNameException.java May 1, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 39,42 **** --- 38,42 ---- * @author Manuel Laflamme * @version 1.0 + * @since May 1, 2002 */ public class AmbiguousTableNameException extends DataSetException Index: CachedResultSetTable.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/database/CachedResultSetTable.java,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** CachedResultSetTable.java 1 Aug 2003 02:29:10 -0000 1.11 --- CachedResultSetTable.java 22 Jan 2004 02:54:17 -0000 1.12 *************** *** 1,7 **** /* - * CachedResultSetTable.java Feb 20, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 33,36 **** --- 32,36 ---- * @author Manuel Laflamme * @version $Revision$ + * @since Feb 20, 2002 */ public class CachedResultSetTable extends CachedTable implements IResultSetTable Index: CachedResultSetTableFactory.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/database/CachedResultSetTableFactory.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** CachedResultSetTableFactory.java 1 Aug 2003 02:29:11 -0000 1.1 --- CachedResultSetTableFactory.java 22 Jan 2004 02:54:17 -0000 1.2 *************** *** 2,6 **** * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 2,6 ---- * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or Index: CyclicTablesDependencyException.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/database/CyclicTablesDependencyException.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** CyclicTablesDependencyException.java 6 Apr 2003 00:50:37 -0000 1.1 --- CyclicTablesDependencyException.java 22 Jan 2004 02:54:17 -0000 1.2 *************** *** 2,6 **** * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 2,6 ---- * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or Index: DatabaseConfig.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/database/DatabaseConfig.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** DatabaseConfig.java 18 Jan 2004 18:22:43 -0000 1.3 --- DatabaseConfig.java 22 Jan 2004 02:54:17 -0000 1.4 *************** *** 2,6 **** * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 2,6 ---- * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 21,31 **** package org.dbunit.database; - import org.dbunit.dataset.datatype.DefaultDataTypeFactory; import org.dbunit.database.statement.PreparedStatementFactory; - import java.util.Set; - import java.util.Map; - import java.util.HashSet; import java.util.HashMap; /** --- 21,31 ---- package org.dbunit.database; import org.dbunit.database.statement.PreparedStatementFactory; + import org.dbunit.dataset.datatype.DefaultDataTypeFactory; import java.util.HashMap; + import java.util.HashSet; + import java.util.Map; + import java.util.Set; /** *************** *** 83,88 **** * Set the value of a feature flag. * ! * @param name ! * @param value */ public void setFeature(String name, boolean value) --- 83,88 ---- * Set the value of a feature flag. * ! * @param name the feature id ! * @param value the feature status */ public void setFeature(String name, boolean value) *************** *** 101,106 **** * Look up the value of a feature flag. * ! * @param name ! * @return */ public boolean getFeature(String name) --- 101,106 ---- * Look up the value of a feature flag. * ! * @param name the feature id ! * @return the feature status */ public boolean getFeature(String name) *************** *** 112,117 **** * Set the value of a property. * ! * @param name ! * @param value */ public void setProperty(String name, Object value) --- 112,117 ---- * Set the value of a property. * ! * @param name the property id ! * @param value the property value */ public void setProperty(String name, Object value) *************** *** 123,128 **** * Look up the value of a property. * ! * @param name ! * @return */ public Object getProperty(String name) --- 123,128 ---- * Look up the value of a property. * ! * @param name the property id ! * @return the property value */ public Object getProperty(String name) Index: DatabaseConnection.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/database/DatabaseConnection.java,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** DatabaseConnection.java 13 Jun 2002 17:24:56 -0000 1.10 --- DatabaseConnection.java 22 Jan 2004 02:54:17 -0000 1.11 *************** *** 1,7 **** /* - * DatabaseConnection.java Feb 21, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 32,35 **** --- 31,35 ---- * @author Manuel Laflamme * @version $Revision$ + * @since Feb 21, 2002 */ public class DatabaseConnection extends AbstractDatabaseConnection Index: DatabaseDataSet.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/database/DatabaseDataSet.java,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -d -r1.26 -r1.27 *** DatabaseDataSet.java 18 Jan 2004 16:39:23 -0000 1.26 --- DatabaseDataSet.java 22 Jan 2004 02:54:17 -0000 1.27 *************** *** 1,7 **** /* - * DatabaseDataSet.java * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or Index: DatabaseDataSourceConnection.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/database/DatabaseDataSourceConnection.java,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** DatabaseDataSourceConnection.java 13 Jun 2002 17:24:56 -0000 1.9 --- DatabaseDataSourceConnection.java 22 Jan 2004 02:54:18 -0000 1.10 *************** *** 1,7 **** /* - * DatabaseDataSourceConnection.java Mar 8, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 23,31 **** package org.dbunit.database; - import java.sql.Connection; - import java.sql.SQLException; import javax.naming.InitialContext; import javax.naming.NamingException; import javax.sql.DataSource; /** --- 22,30 ---- package org.dbunit.database; import javax.naming.InitialContext; import javax.naming.NamingException; import javax.sql.DataSource; + import java.sql.Connection; + import java.sql.SQLException; /** *************** *** 35,38 **** --- 34,38 ---- * @author Manuel Laflamme * @version $Revision$ + * @since Mar 8, 2002 */ public class DatabaseDataSourceConnection extends AbstractDatabaseConnection Index: DatabaseSequenceFilter.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/database/DatabaseSequenceFilter.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** DatabaseSequenceFilter.java 17 Jun 2003 17:34:08 -0000 1.3 --- DatabaseSequenceFilter.java 22 Jan 2004 02:54:18 -0000 1.4 *************** *** 2,6 **** * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 2,6 ---- * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or Index: DatabaseTableIterator.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/database/DatabaseTableIterator.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** DatabaseTableIterator.java 13 Apr 2003 03:38:01 -0000 1.2 --- DatabaseTableIterator.java 22 Jan 2004 02:54:18 -0000 1.3 *************** *** 2,6 **** * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 2,6 ---- * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 22,29 **** import org.dbunit.dataset.DataSetException; import org.dbunit.dataset.ITable; import org.dbunit.dataset.ITableIterator; import org.dbunit.dataset.ITableMetaData; - import org.dbunit.dataset.IDataSet; /** --- 22,29 ---- import org.dbunit.dataset.DataSetException; + import org.dbunit.dataset.IDataSet; import org.dbunit.dataset.ITable; import org.dbunit.dataset.ITableIterator; import org.dbunit.dataset.ITableMetaData; /** Index: DatabaseTableMetaData.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/database/DatabaseTableMetaData.java,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** DatabaseTableMetaData.java 18 Jan 2004 18:22:43 -0000 1.17 --- DatabaseTableMetaData.java 22 Jan 2004 02:54:18 -0000 1.18 *************** *** 1,7 **** /* - * DatabaseTableMetaData.java Mar 8, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 42,45 **** --- 41,45 ---- * @author Manuel Laflamme * @version $Revision$ + * @since Mar 8, 2002 */ public class DatabaseTableMetaData extends AbstractTableMetaData Index: ForwardOnlyResultSetTable.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/database/ForwardOnlyResultSetTable.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** ForwardOnlyResultSetTable.java 18 Jan 2004 18:22:43 -0000 1.6 --- ForwardOnlyResultSetTable.java 22 Jan 2004 02:54:18 -0000 1.7 *************** *** 2,6 **** * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 2,6 ---- * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or Index: ForwardOnlyResultSetTableFactory.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/database/ForwardOnlyResultSetTableFactory.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ForwardOnlyResultSetTableFactory.java 1 Aug 2003 02:29:11 -0000 1.1 --- ForwardOnlyResultSetTableFactory.java 22 Jan 2004 02:54:18 -0000 1.2 *************** *** 2,6 **** * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 2,6 ---- * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or Index: IDatabaseConnection.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/database/IDatabaseConnection.java,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** IDatabaseConnection.java 1 Aug 2003 02:29:11 -0000 1.13 --- IDatabaseConnection.java 22 Jan 2004 02:54:18 -0000 1.14 *************** *** 1,7 **** /* - * IDatabaseConnection.java Mar 6, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 24,28 **** import org.dbunit.database.statement.IStatementFactory; ! import org.dbunit.dataset.*; import java.sql.Connection; --- 23,30 ---- import org.dbunit.database.statement.IStatementFactory; ! import org.dbunit.dataset.DataSetException; ! import org.dbunit.dataset.IDataSet; ! import org.dbunit.dataset.ITable; ! import org.dbunit.dataset.ITableMetaData; import java.sql.Connection; *************** *** 34,37 **** --- 36,40 ---- * @author Manuel Laflamme * @version $Revision$ + * @since Mar 6, 2002 */ public interface IDatabaseConnection Index: IResultSetTable.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/database/IResultSetTable.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** IResultSetTable.java 9 Aug 2003 11:23:12 -0000 1.2 --- IResultSetTable.java 22 Jan 2004 02:54:18 -0000 1.3 *************** *** 2,6 **** * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 2,6 ---- * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 21,26 **** package org.dbunit.database; - import org.dbunit.dataset.ITable; import org.dbunit.dataset.DataSetException; --- 21,26 ---- package org.dbunit.database; import org.dbunit.dataset.DataSetException; + import org.dbunit.dataset.ITable; Index: IResultSetTableFactory.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/database/IResultSetTableFactory.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** IResultSetTableFactory.java 1 Aug 2003 02:29:11 -0000 1.1 --- IResultSetTableFactory.java 22 Jan 2004 02:54:18 -0000 1.2 *************** *** 2,6 **** * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 2,6 ---- * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or Index: QueryDataSet.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/database/QueryDataSet.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** QueryDataSet.java 18 Jan 2004 16:39:23 -0000 1.7 --- QueryDataSet.java 22 Jan 2004 02:54:18 -0000 1.8 *************** *** 1,7 **** /* - * QueryDataSet.java Dec 4, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 22,38 **** package org.dbunit.database; import java.sql.SQLException; import java.util.ArrayList; import java.util.Iterator; import java.util.List; - import java.util.Arrays; - import java.util.Collections; - - import org.dbunit.dataset.AbstractDataSet; - import org.dbunit.dataset.DataSetException; - import org.dbunit.dataset.DefaultTableIterator; - import org.dbunit.dataset.ITable; - import org.dbunit.dataset.ITableIterator; - import org.dbunit.dataset.DataSetUtils; /** --- 21,33 ---- package org.dbunit.database; + import org.dbunit.dataset.AbstractDataSet; + import org.dbunit.dataset.DataSetException; + import org.dbunit.dataset.ITableIterator; + import java.sql.SQLException; import java.util.ArrayList; + import java.util.Collections; import java.util.Iterator; import java.util.List; /** *************** *** 40,44 **** * * @author Eric Pugh ! * @since December 4, 2002 * @version $Revision$ */ --- 35,39 ---- * * @author Eric Pugh ! * @since Dec 4, 2002 * @version $Revision$ */ Index: QueryTableIterator.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/database/QueryTableIterator.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** QueryTableIterator.java 16 Sep 2003 12:24:08 -0000 1.2 --- QueryTableIterator.java 22 Jan 2004 02:54:18 -0000 1.3 *************** *** 2,6 **** * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 2,6 ---- * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 22,33 **** import org.dbunit.dataset.DataSetException; import org.dbunit.dataset.ITable; import org.dbunit.dataset.ITableIterator; import org.dbunit.dataset.ITableMetaData; - import org.dbunit.dataset.IDataSet; - import java.util.List; - import java.util.ArrayList; import java.sql.SQLException; /** --- 22,32 ---- import org.dbunit.dataset.DataSetException; + import org.dbunit.dataset.IDataSet; import org.dbunit.dataset.ITable; import org.dbunit.dataset.ITableIterator; import org.dbunit.dataset.ITableMetaData; import java.sql.SQLException; + import java.util.List; /** Index: ScrollableResultSetTable.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/database/ScrollableResultSetTable.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** ScrollableResultSetTable.java 18 Jan 2004 18:22:43 -0000 1.5 --- ScrollableResultSetTable.java 22 Jan 2004 02:54:18 -0000 1.6 *************** *** 1,7 **** /* - * XmlTable.java Feb 17, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 33,36 **** --- 32,36 ---- * @author Manuel Laflamme * @version $Revision$ + * @since Feb 17, 2002 */ public class ScrollableResultSetTable extends AbstractResultSetTable |
Update of /cvsroot/dbunit/dbunit/src/java/org/dbunit/database/statement In directory sc8-pr-cvs1:/tmp/cvs-serv22463/src/java/org/dbunit/database/statement Modified Files: AbstractBatchStatement.java AbstractPreparedBatchStatement.java AbstractStatementFactory.java AutomaticPreparedBatchStatement.java BatchStatement.java BatchStatementDecorator.java CompoundStatement.java IBatchStatement.java IPreparedBatchStatement.java IStatementFactory.java PreparedBatchStatement.java PreparedStatementFactory.java SimplePreparedStatement.java SimpleStatement.java StatementFactory.java Log Message: Standardized usage of "DbUnit.org" in license statement. Also optimized imports and added @since Javadoc tag to most files missing it. Index: AbstractBatchStatement.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/database/statement/AbstractBatchStatement.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** AbstractBatchStatement.java 13 Jun 2002 17:24:56 -0000 1.4 --- AbstractBatchStatement.java 22 Jan 2004 02:54:18 -0000 1.5 *************** *** 1,7 **** /* - * AbstractBatchStatement.java Mar 15, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 23,31 **** package org.dbunit.database.statement; ! import java.sql.*; /** * @author Manuel Laflamme * @version $Revision$ */ public abstract class AbstractBatchStatement implements IBatchStatement --- 22,33 ---- package org.dbunit.database.statement; ! import java.sql.Connection; ! import java.sql.SQLException; ! import java.sql.Statement; /** * @author Manuel Laflamme * @version $Revision$ + * @since Mar 15, 2002 */ public abstract class AbstractBatchStatement implements IBatchStatement Index: AbstractPreparedBatchStatement.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/database/statement/AbstractPreparedBatchStatement.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** AbstractPreparedBatchStatement.java 13 Jun 2002 17:24:56 -0000 1.4 --- AbstractPreparedBatchStatement.java 22 Jan 2004 02:54:18 -0000 1.5 *************** *** 1,7 **** /* - * AbstractPreparedBatchStatement.java Mar 16, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 23,31 **** package org.dbunit.database.statement; ! import java.sql.*; /** * @author Manuel Laflamme * @version $Revision$ */ public abstract class AbstractPreparedBatchStatement implements IPreparedBatchStatement --- 22,33 ---- package org.dbunit.database.statement; ! import java.sql.Connection; ! import java.sql.PreparedStatement; ! import java.sql.SQLException; /** * @author Manuel Laflamme * @version $Revision$ + * @since Mar 16, 2002 */ public abstract class AbstractPreparedBatchStatement implements IPreparedBatchStatement Index: AbstractStatementFactory.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/database/statement/AbstractStatementFactory.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** AbstractStatementFactory.java 1 Aug 2003 02:29:11 -0000 1.3 --- AbstractStatementFactory.java 22 Jan 2004 02:54:18 -0000 1.4 *************** *** 1,18 **** /* ! * Created by IntelliJ IDEA. ! * User: mlaflamm ! * Date: Apr 10, 2002 ! * Time: 9:28:37 AM ! * To change template for new class use ! * Code Style | Class Templates options (Tools | IDE Options). */ package org.dbunit.database.statement; - import org.dbunit.database.IDatabaseConnection; import org.dbunit.database.DatabaseConfig; import java.sql.SQLException; public abstract class AbstractStatementFactory implements IStatementFactory { --- 1,35 ---- /* ! * ! * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org ! * ! * 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 ! * */ package org.dbunit.database.statement; import org.dbunit.database.DatabaseConfig; + import org.dbunit.database.IDatabaseConnection; import java.sql.SQLException; + /** + * @author Manuel Laflamme + * @version $Revision$ + * @since Apr 10, 2002 + */ public abstract class AbstractStatementFactory implements IStatementFactory { Index: AutomaticPreparedBatchStatement.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/database/statement/AutomaticPreparedBatchStatement.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** AutomaticPreparedBatchStatement.java 19 Jun 2003 03:17:16 -0000 1.2 --- AutomaticPreparedBatchStatement.java 22 Jan 2004 02:54:18 -0000 1.3 *************** *** 2,6 **** * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 2,6 ---- * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or Index: BatchStatement.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/database/statement/BatchStatement.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** BatchStatement.java 13 Jun 2002 17:24:56 -0000 1.5 --- BatchStatement.java 22 Jan 2004 02:54:18 -0000 1.6 *************** *** 1,7 **** /* - * BatchStatement.java Feb 20, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 29,32 **** --- 28,32 ---- * @author Manuel Laflamme * @version $Revision$ + * @since Feb 20, 2002 */ public class BatchStatement extends AbstractBatchStatement Index: BatchStatementDecorator.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/database/statement/BatchStatementDecorator.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** BatchStatementDecorator.java 13 Jun 2002 17:24:56 -0000 1.5 --- BatchStatementDecorator.java 22 Jan 2004 02:54:18 -0000 1.6 *************** *** 1,7 **** /* - * BatchStatementDecorator.java Mar 16, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 28,36 **** import java.sql.SQLException; ! import java.util.*; /** * @author Manuel Laflamme * @version $Revision$ */ public class BatchStatementDecorator implements IPreparedBatchStatement --- 27,38 ---- import java.sql.SQLException; ! import java.util.ArrayList; ! import java.util.List; ! import java.util.StringTokenizer; /** * @author Manuel Laflamme * @version $Revision$ + * @since Mar 16, 2002 */ public class BatchStatementDecorator implements IPreparedBatchStatement Index: CompoundStatement.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/database/statement/CompoundStatement.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** CompoundStatement.java 13 Jun 2002 17:24:56 -0000 1.4 --- CompoundStatement.java 22 Jan 2004 02:54:18 -0000 1.5 *************** *** 1,7 **** /* - * CompoundStatement.java Feb 20, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 29,32 **** --- 28,32 ---- * @author Manuel Laflamme * @version $Revision$ + * @since Feb 20, 2002 */ public class CompoundStatement extends AbstractBatchStatement Index: IBatchStatement.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/database/statement/IBatchStatement.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** IBatchStatement.java 13 Jun 2002 17:24:56 -0000 1.4 --- IBatchStatement.java 22 Jan 2004 02:54:18 -0000 1.5 *************** *** 1,7 **** /* - * IBatchStatement.java Mar 15, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 28,31 **** --- 27,31 ---- * @author Manuel Laflamme * @version $Revision$ + * @since Mar 15, 2002 */ public interface IBatchStatement Index: IPreparedBatchStatement.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/database/statement/IPreparedBatchStatement.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** IPreparedBatchStatement.java 13 Jun 2002 17:24:56 -0000 1.4 --- IPreparedBatchStatement.java 22 Jan 2004 02:54:18 -0000 1.5 *************** *** 1,7 **** /* - * IPreparedBatchStatement.java Mar 15, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 31,34 **** --- 30,34 ---- * @author Manuel Laflamme * @version $Revision$ + * @since Mar 15, 2002 */ public interface IPreparedBatchStatement Index: IStatementFactory.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/database/statement/IStatementFactory.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** IStatementFactory.java 13 Jun 2002 17:24:56 -0000 1.5 --- IStatementFactory.java 22 Jan 2004 02:54:18 -0000 1.6 *************** *** 1,7 **** /* - * IStatementFactory.java Mar 16, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 30,33 **** --- 29,33 ---- * @author Manuel Laflamme * @version $Revision$ + * @since Mar 16, 2002 */ public interface IStatementFactory Index: PreparedBatchStatement.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/database/statement/PreparedBatchStatement.java,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** PreparedBatchStatement.java 17 May 2003 15:38:52 -0000 1.10 --- PreparedBatchStatement.java 22 Jan 2004 02:54:18 -0000 1.11 *************** *** 1,7 **** /* - * PreparedBatchStatement.java Mar 16, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 32,36 **** * @author Manuel Laflamme * @version $Revision$ ! */ public class PreparedBatchStatement extends AbstractPreparedBatchStatement { --- 31,36 ---- * @author Manuel Laflamme * @version $Revision$ ! * @since Mar 16, 2002 ! */ public class PreparedBatchStatement extends AbstractPreparedBatchStatement { Index: PreparedStatementFactory.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/database/statement/PreparedStatementFactory.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** PreparedStatementFactory.java 19 Jun 2003 03:17:16 -0000 1.6 --- PreparedStatementFactory.java 22 Jan 2004 02:54:18 -0000 1.7 *************** *** 1,7 **** /* - * PreparedStatementFactory.java Mar 20, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 30,33 **** --- 29,33 ---- * @author Manuel Laflamme * @version $Revision$ + * @since Mar 20, 2002 */ public class PreparedStatementFactory extends AbstractStatementFactory Index: SimplePreparedStatement.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/database/statement/SimplePreparedStatement.java,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** SimplePreparedStatement.java 20 May 2003 14:04:33 -0000 1.11 --- SimplePreparedStatement.java 22 Jan 2004 02:54:18 -0000 1.12 *************** *** 1,7 **** /* - * PreparedBatchStatement.java Mar 16, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 32,35 **** --- 31,35 ---- * @author Manuel Laflamme * @version $Revision$ + * @since Mar 16, 2002 */ public class SimplePreparedStatement extends AbstractPreparedBatchStatement Index: SimpleStatement.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/database/statement/SimpleStatement.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** SimpleStatement.java 20 May 2003 14:04:33 -0000 1.5 --- SimpleStatement.java 22 Jan 2004 02:54:18 -0000 1.6 *************** *** 1,7 **** /* - * CompoundStatement.java Feb 20, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 31,34 **** --- 30,34 ---- * @author Manuel Laflamme * @version $Revision$ + * @since Feb 20, 2002 */ public class SimpleStatement extends AbstractBatchStatement Index: StatementFactory.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/database/statement/StatementFactory.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** StatementFactory.java 13 Jun 2002 17:24:56 -0000 1.5 --- StatementFactory.java 22 Jan 2004 02:54:18 -0000 1.6 *************** *** 1,7 **** /* - * StatementFactory.java Mar 15, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 30,33 **** --- 29,33 ---- * @author Manuel Laflamme * @version $Revision$ + * @since Mar 15, 2002 */ public class StatementFactory extends AbstractStatementFactory |
From: <mla...@us...> - 2004-01-22 02:54:52
|
Update of /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/excel In directory sc8-pr-cvs1:/tmp/cvs-serv22463/src/java/org/dbunit/dataset/excel Modified Files: XlsDataSet.java XlsTable.java Log Message: Standardized usage of "DbUnit.org" in license statement. Also optimized imports and added @since Javadoc tag to most files missing it. Index: XlsDataSet.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/excel/XlsDataSet.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** XlsDataSet.java 9 Apr 2003 22:52:10 -0000 1.3 --- XlsDataSet.java 22 Jan 2004 02:54:18 -0000 1.4 *************** *** 1,5 **** /* * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 1,5 ---- /* * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 22,30 **** import org.dbunit.dataset.Column; import org.dbunit.dataset.DataSetException; import org.dbunit.dataset.IDataSet; import org.dbunit.dataset.ITable; - import org.dbunit.dataset.ITableMetaData; import org.dbunit.dataset.ITableIterator; ! import org.dbunit.dataset.DefaultTableIterator; import org.dbunit.dataset.datatype.DataType; --- 22,30 ---- import org.dbunit.dataset.Column; import org.dbunit.dataset.DataSetException; + import org.dbunit.dataset.DefaultTableIterator; import org.dbunit.dataset.IDataSet; import org.dbunit.dataset.ITable; import org.dbunit.dataset.ITableIterator; ! import org.dbunit.dataset.ITableMetaData; import org.dbunit.dataset.datatype.DataType; Index: XlsTable.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/dataset/excel/XlsTable.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** XlsTable.java 23 Mar 2003 21:53:39 -0000 1.2 --- XlsTable.java 22 Jan 2004 02:54:18 -0000 1.3 *************** *** 2,6 **** * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Manuel Laflamme * * This library is free software; you can redistribute it and/or --- 2,6 ---- * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 21,25 **** package org.dbunit.dataset.excel; ! import org.dbunit.dataset.*; import org.dbunit.dataset.datatype.DataType; import org.dbunit.dataset.datatype.DataTypeException; --- 21,29 ---- package org.dbunit.dataset.excel; ! import org.dbunit.dataset.AbstractTable; ! import org.dbunit.dataset.Column; ! import org.dbunit.dataset.DataSetException; ! import org.dbunit.dataset.DefaultTableMetaData; ! import org.dbunit.dataset.ITableMetaData; import org.dbunit.dataset.datatype.DataType; import org.dbunit.dataset.datatype.DataTypeException; *************** *** 31,36 **** import java.math.BigDecimal; - import java.util.List; import java.util.ArrayList; /** --- 35,40 ---- import java.math.BigDecimal; import java.util.ArrayList; + import java.util.List; /** |
Update of /cvsroot/dbunit/dbunit/src/java/org/dbunit/ant In directory sc8-pr-cvs1:/tmp/cvs-serv22463/src/java/org/dbunit/ant Modified Files: Composite.java DbUnitTask.java DbUnitTaskStep.java Export.java Operation.java Query.java Table.java Log Message: Standardized usage of "DbUnit.org" in license statement. Also optimized imports and added @since Javadoc tag to most files missing it. Index: Composite.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/ant/Composite.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Composite.java 14 Feb 2003 17:22:20 -0000 1.4 --- Composite.java 22 Jan 2004 02:54:17 -0000 1.5 *************** *** 1,7 **** /* - * Composite.java Mar 24, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Timothy Ruppert && Ben Cox * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 25,35 **** import org.dbunit.DatabaseUnitException; import org.dbunit.database.IDatabaseConnection; ! import java.util.*; /** * The <code>Composite</code> class executes nested <code>Operation</code> steps. * ! * @author Timothy Ruppert && Ben Cox * @version $Revision$ * @see org.dbunit.ant.Operation */ --- 24,39 ---- import org.dbunit.DatabaseUnitException; import org.dbunit.database.IDatabaseConnection; ! ! import java.util.ArrayList; ! import java.util.Iterator; ! import java.util.List; /** * The <code>Composite</code> class executes nested <code>Operation</code> steps. * ! * @author Timothy Ruppert ! * @author Ben Cox * @version $Revision$ + * @since Jun 10, 2002 * @see org.dbunit.ant.Operation */ Index: DbUnitTask.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/ant/DbUnitTask.java,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** DbUnitTask.java 18 Jan 2004 18:22:42 -0000 1.10 --- DbUnitTask.java 22 Jan 2004 02:54:17 -0000 1.11 *************** *** 1,7 **** /* - * DbUnitTask.java Mar 24, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Timothy Ruppert && Ben Cox * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 24,40 **** import org.dbunit.DatabaseUnitException; - import org.dbunit.dataset.datatype.IDataTypeFactory; - import org.dbunit.database.IDatabaseConnection; - import org.dbunit.database.DatabaseConnection; import org.dbunit.database.DatabaseConfig; import org.dbunit.database.ForwardOnlyResultSetTableFactory; ! import java.sql.*; ! import java.util.*; ! ! import org.apache.tools.ant.*; import org.apache.tools.ant.types.Path; import org.apache.tools.ant.types.Reference; /** * <code>DbUnitTask</code> is the task definition for an Ant --- 23,47 ---- import org.dbunit.DatabaseUnitException; import org.dbunit.database.DatabaseConfig; + import org.dbunit.database.DatabaseConnection; import org.dbunit.database.ForwardOnlyResultSetTableFactory; + import org.dbunit.database.IDatabaseConnection; + import org.dbunit.dataset.datatype.IDataTypeFactory; ! import org.apache.tools.ant.AntClassLoader; ! import org.apache.tools.ant.BuildException; ! import org.apache.tools.ant.Project; ! import org.apache.tools.ant.Task; import org.apache.tools.ant.types.Path; import org.apache.tools.ant.types.Reference; + import java.sql.Connection; + import java.sql.Driver; + import java.sql.SQLException; + import java.util.ArrayList; + import java.util.Iterator; + import java.util.List; + import java.util.Properties; + /** * <code>DbUnitTask</code> is the task definition for an Ant *************** *** 43,48 **** * tasks. * ! * @author Timothy Ruppert && Ben Cox * @version $Revision$ * @see org.apache.tools.ant.Task */ --- 50,57 ---- * tasks. * ! * @author Timothy Ruppert ! * @author Ben Cox * @version $Revision$ + * @since Jun 10, 2002 * @see org.apache.tools.ant.Task */ Index: DbUnitTaskStep.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/ant/DbUnitTaskStep.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** DbUnitTaskStep.java 15 Jul 2002 01:00:29 -0000 1.3 --- DbUnitTaskStep.java 22 Jan 2004 02:54:17 -0000 1.4 *************** *** 1,7 **** /* - * DbUnitTaskStep.java Mar 24, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Timothy Ruppert && Ben Cox * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 30,35 **** * to be called on all elements nested under <code>DbUnitTask</code>. * ! * @author Timothy Ruppert && Ben Cox * @version $Revision$ */ public interface DbUnitTaskStep --- 29,36 ---- * to be called on all elements nested under <code>DbUnitTask</code>. * ! * @author Timothy Ruppert ! * @author Ben Cox * @version $Revision$ + * @since Jun 10, 2002 */ public interface DbUnitTaskStep Index: Export.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/ant/Export.java,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** Export.java 10 Oct 2003 20:29:48 -0000 1.11 --- Export.java 22 Jan 2004 02:54:17 -0000 1.12 *************** *** 1,7 **** /* - * Export.java Jun 10, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Timothy Ruppert && Ben Cox * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 46,51 **** * specific table names are identified. * ! * @author Timothy Ruppert && Ben Cox * @version $Revision$ * @see DbUnitTaskStep */ --- 45,52 ---- * specific table names are identified. * ! * @author Timothy Ruppert ! * @author Ben Cox * @version $Revision$ + * @since Jun 10, 2002 * @see DbUnitTaskStep */ Index: Operation.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/ant/Operation.java,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** Operation.java 19 Jan 2004 21:34:35 -0000 1.10 --- Operation.java 22 Jan 2004 02:54:17 -0000 1.11 *************** *** 1,7 **** /* - * Operation.java Mar 24, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Timothy Ruppert && Ben Cox * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 25,43 **** import org.dbunit.DatabaseUnitException; import org.dbunit.database.IDatabaseConnection; import org.dbunit.dataset.IDataSet; import org.dbunit.dataset.stream.IDataSetProducer; import org.dbunit.dataset.stream.StreamingDataSet; - import org.dbunit.dataset.CachedDataSet; - import org.dbunit.dataset.xml.FlatXmlDataSet; - import org.dbunit.dataset.xml.XmlDataSet; - import org.dbunit.dataset.xml.XmlProducer; import org.dbunit.dataset.xml.FlatXmlProducer; ! import org.dbunit.operation.DatabaseOperation; import org.dbunit.ext.mssql.InsertIdentityOperation; import org.xml.sax.InputSource; import java.io.File; - import java.io.FileReader; import java.io.IOException; import java.sql.SQLException; --- 24,39 ---- import org.dbunit.DatabaseUnitException; import org.dbunit.database.IDatabaseConnection; + import org.dbunit.dataset.CachedDataSet; import org.dbunit.dataset.IDataSet; import org.dbunit.dataset.stream.IDataSetProducer; import org.dbunit.dataset.stream.StreamingDataSet; import org.dbunit.dataset.xml.FlatXmlProducer; ! import org.dbunit.dataset.xml.XmlProducer; import org.dbunit.ext.mssql.InsertIdentityOperation; + import org.dbunit.operation.DatabaseOperation; import org.xml.sax.InputSource; import java.io.File; import java.io.IOException; import java.sql.SQLException; *************** *** 48,53 **** * task. * ! * @author Timothy Ruppert && Ben Cox * @version $Revision$ * @see org.dbunit.ant.DbUnitTaskStep */ --- 44,51 ---- * task. * ! * @author Timothy Ruppert ! * @author Ben Cox * @version $Revision$ + * @since Jun 10, 2002 * @see org.dbunit.ant.DbUnitTaskStep */ Index: Query.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/ant/Query.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Query.java 11 Dec 2002 15:53:50 -0000 1.1 --- Query.java 22 Jan 2004 02:54:17 -0000 1.2 *************** *** 1,7 **** /* - * Query.java Jun 10, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Timothy Ruppert && Ben Cox * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 27,32 **** * within an <code>Export</code>. * ! * @author Timothy Ruppert && Ben Cox * @version $Revision$ */ public class Query --- 26,32 ---- * within an <code>Export</code>. * ! * @author Eric Pugh * @version $Revision$ + * @since Dec 10, 2002 */ public class Query Index: Table.java =================================================================== RCS file: /cvsroot/dbunit/dbunit/src/java/org/dbunit/ant/Table.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Table.java 15 Feb 2003 18:57:47 -0000 1.4 --- Table.java 22 Jan 2004 02:54:17 -0000 1.5 *************** *** 1,7 **** /* - * Table.java Jun 10, 2002 * * The DbUnit Database Testing Framework ! * Copyright (C)2002, Timothy Ruppert && Ben Cox * * This library is free software; you can redistribute it and/or --- 1,6 ---- /* * * The DbUnit Database Testing Framework ! * Copyright (C)2002-2004, DbUnit.org * * This library is free software; you can redistribute it and/or *************** *** 27,32 **** * within an <code>Export</code>. * ! * @author Timothy Ruppert && Ben Cox * @version $Revision$ */ public class Table --- 26,33 ---- * within an <code>Export</code>. * ! * @author Timothy Ruppert ! * @author Ben Cox * @version $Revision$ + * @since Jun 10, 2002 */ public class Table |