Author: tomdz
Date: Wed Oct 11 15:20:20 2006
New Revision: 463004
URL: http://svn.apache.org/viewvc?view=rev&rev=463004
Log:
Fixed checkstyle errors
Added:
db/ddlutils/trunk/src/test/org/apache/ddlutils/io/converters/package.html
Modified:
db/ddlutils/trunk/build.xml
db/ddlutils/trunk/src/java/org/apache/ddlutils/platform/SqlBuilder.java
db/ddlutils/trunk/src/test/org/apache/ddlutils/io/converters/TestDateConverter.java
db/ddlutils/trunk/src/test/org/apache/ddlutils/io/converters/TestTimeConverter.java
Modified: db/ddlutils/trunk/build.xml
URL:
http://svn.apache.org/viewvc/db/ddlutils/trunk/build.xml?view=diff&rev=463004&r1=463003&r2=463004
==============================================================================
--- db/ddlutils/trunk/build.xml (original)
+++ db/ddlutils/trunk/build.xml Wed Oct 11 15:20:20 2006
@@ -310,7 +310,7 @@
</condition>
</fail>
- <taskdef resource="checkstyletask.properties"
+ <taskdef resource="checkstyletask.properties"
classpathref="compilation-classpath"/>
<checkstyle config="${src.check.dir}/ddlutils-checks.xml"
Modified:
db/ddlutils/trunk/src/java/org/apache/ddlutils/platform/SqlBuilder.java
URL:
http://svn.apache.org/viewvc/db/ddlutils/trunk/src/java/org/apache/ddlutils/platform/SqlBuilder.java?view=diff&rev=463004&r1=463003&r2=463004
==============================================================================
--- db/ddlutils/trunk/src/java/org/apache/ddlutils/platform/SqlBuilder.java
(original)
+++ db/ddlutils/trunk/src/java/org/apache/ddlutils/platform/SqlBuilder.java Wed
Oct 11 15:20:20 2006
@@ -331,8 +331,7 @@
* Returns a new date format object for formatting numbers in the
specified locale.
* Platforms can override this if necessary.
*
- * @param locale The locale
- * @return The number format object
+ * @param format The number format object
*/
protected void setValueNumberFormat(NumberFormat format)
{
Modified:
db/ddlutils/trunk/src/test/org/apache/ddlutils/io/converters/TestDateConverter.java
URL:
http://svn.apache.org/viewvc/db/ddlutils/trunk/src/test/org/apache/ddlutils/io/converters/TestDateConverter.java?view=diff&rev=463004&r1=463003&r2=463004
==============================================================================
---
db/ddlutils/trunk/src/test/org/apache/ddlutils/io/converters/TestDateConverter.java
(original)
+++
db/ddlutils/trunk/src/test/org/apache/ddlutils/io/converters/TestDateConverter.java
Wed Oct 11 15:20:20 2006
@@ -1,5 +1,21 @@
package org.apache.ddlutils.io.converters;
+/*
+ * Copyright 1999-2006 The Apache Software Foundation.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
import java.sql.Date;
import java.sql.Types;
import java.util.Calendar;
Modified:
db/ddlutils/trunk/src/test/org/apache/ddlutils/io/converters/TestTimeConverter.java
URL:
http://svn.apache.org/viewvc/db/ddlutils/trunk/src/test/org/apache/ddlutils/io/converters/TestTimeConverter.java?view=diff&rev=463004&r1=463003&r2=463004
==============================================================================
---
db/ddlutils/trunk/src/test/org/apache/ddlutils/io/converters/TestTimeConverter.java
(original)
+++
db/ddlutils/trunk/src/test/org/apache/ddlutils/io/converters/TestTimeConverter.java
Wed Oct 11 15:20:20 2006
@@ -1,5 +1,21 @@
package org.apache.ddlutils.io.converters;
+/*
+ * Copyright 1999-2006 The Apache Software Foundation.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
import java.sql.Time;
import java.sql.Types;
import java.util.Calendar;
Added: db/ddlutils/trunk/src/test/org/apache/ddlutils/io/converters/package.html
URL:
http://svn.apache.org/viewvc/db/ddlutils/trunk/src/test/org/apache/ddlutils/io/converters/package.html?view=auto&rev=463004
==============================================================================
--- db/ddlutils/trunk/src/test/org/apache/ddlutils/io/converters/package.html
(added)
+++ db/ddlutils/trunk/src/test/org/apache/ddlutils/io/converters/package.html
Wed Oct 11 15:20:20 2006
@@ -0,0 +1,26 @@
+<html>
+<head>
+<!--
+ Copyright 2006 The Apache Software Foundation.
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+ <meta name="Author" content="Thomas Dudziak">
+</head>
+<body bgcolor="white">
+ <p>
+ Contains classes that can be used to convert between strings (e.g. in a
data XML file) and JDBC data types.
+ </p>
+</body>
+</html>