You are viewing a plain text version of this content. The canonical link for it is here.
Posted to ddlutils-dev@db.apache.org by to...@apache.org on 2005/09/27 23:39:20 UTC

svn commit: r292055 - in /db/ddlutils/trunk/src/java/org/apache/ddlutils: dynabean/package.html io/package.html model/package.html task/package.html

Author: tomdz
Date: Tue Sep 27 14:39:11 2005
New Revision: 292055

URL: http://svn.apache.org/viewcvs?rev=292055&view=rev
Log:
SVN or Eclipse seemed to have problems with replacing the original package.html files with new ones - therefore this re-submit

Added:
    db/ddlutils/trunk/src/java/org/apache/ddlutils/dynabean/package.html
    db/ddlutils/trunk/src/java/org/apache/ddlutils/io/package.html
    db/ddlutils/trunk/src/java/org/apache/ddlutils/model/package.html
    db/ddlutils/trunk/src/java/org/apache/ddlutils/task/package.html

Added: db/ddlutils/trunk/src/java/org/apache/ddlutils/dynabean/package.html
URL: http://svn.apache.org/viewcvs/db/ddlutils/trunk/src/java/org/apache/ddlutils/dynabean/package.html?rev=292055&view=auto
==============================================================================
--- db/ddlutils/trunk/src/java/org/apache/ddlutils/dynabean/package.html (added)
+++ db/ddlutils/trunk/src/java/org/apache/ddlutils/dynabean/package.html Tue Sep 27 14:39:11 2005
@@ -0,0 +1,32 @@
+<html>
+<head>
+<!-- 
+ Copyright 1999-2005 The Apache Software Foundation.
+ 
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+ 
+      http://www.apache.org/licenses/LICENSE-2.0
+ 
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+   <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+   <meta name="Author" content="Thomas Dudziak">
+</head>
+<body bgcolor="white">
+  <p>
+  	Provides the special DdlUtils implementations of {@link org.apache.commons.beanutils.DynaBeanClass}
+  	and {@link org.apache.commons.beanutils.DynaBean} that directly map to tables in the database
+  	model. These are used by DdlUtils when reading data from or writing data to the database.
+  	If you want to create these beans manually, use the
+  	{@link org.apache.ddlutils.model.Database#createDynaBeanFor(org.apache.ddlutils.model.Table)} and
+  	{@link org.apache.ddlutils.model.Database#createDynaBeanFor(java.lang.String, boolean)} methods
+  	rather than the classes directly.
+  </p>
+</body>
+</html>

Added: db/ddlutils/trunk/src/java/org/apache/ddlutils/io/package.html
URL: http://svn.apache.org/viewcvs/db/ddlutils/trunk/src/java/org/apache/ddlutils/io/package.html?rev=292055&view=auto
==============================================================================
--- db/ddlutils/trunk/src/java/org/apache/ddlutils/io/package.html (added)
+++ db/ddlutils/trunk/src/java/org/apache/ddlutils/io/package.html Tue Sep 27 14:39:11 2005
@@ -0,0 +1,37 @@
+<html>
+<head>
+<!-- 
+ Copyright 1999-2005 The Apache Software Foundation.
+ 
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+ 
+      http://www.apache.org/licenses/LICENSE-2.0
+ 
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+   <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+   <meta name="Author" content="Thomas Dudziak">
+</head>
+<body bgcolor="white">
+  <p>
+  	The <code>org.apache.ddlutils.io</code> package contains a classes for input
+  	and output of both the database schemas and data files. Specifically, the
+  	{@link org.apache.ddlutils.io.DatabaseIO} class reads from and writes to schema
+  	XML files, and the {@link org.apache.ddlutils.io.DataReader} and
+  	{@link org.apache.ddlutils.io.DataWriter} classes to the same for data XML files.
+  	The DTD for these data XML files is generated via the
+  	{@link org.apache.ddlutils.io.DataDtdWriter} class.
+  </p>
+  <p>
+    Also of interest is the {@link org.apache.ddlutils.io.JdbcModelReader} class,
+    which retrieves the database model from a live database.
+<!-- TODO: Add reference to Platform facade method -->
+  </p>
+</body>
+</html>

Added: db/ddlutils/trunk/src/java/org/apache/ddlutils/model/package.html
URL: http://svn.apache.org/viewcvs/db/ddlutils/trunk/src/java/org/apache/ddlutils/model/package.html?rev=292055&view=auto
==============================================================================
--- db/ddlutils/trunk/src/java/org/apache/ddlutils/model/package.html (added)
+++ db/ddlutils/trunk/src/java/org/apache/ddlutils/model/package.html Tue Sep 27 14:39:11 2005
@@ -0,0 +1,26 @@
+<html>
+<head>
+<!-- 
+ Copyright 1999-2005 The Apache Software Foundation.
+ 
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+ 
+      http://www.apache.org/licenses/LICENSE-2.0
+ 
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+   <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+   <meta name="Author" content="Thomas Dudziak">
+</head>
+<body bgcolor="white">
+  <p>
+  	This package contains the classes making up the database model.
+  </p>
+</body>
+</html>

Added: db/ddlutils/trunk/src/java/org/apache/ddlutils/task/package.html
URL: http://svn.apache.org/viewcvs/db/ddlutils/trunk/src/java/org/apache/ddlutils/task/package.html?rev=292055&view=auto
==============================================================================
--- db/ddlutils/trunk/src/java/org/apache/ddlutils/task/package.html (added)
+++ db/ddlutils/trunk/src/java/org/apache/ddlutils/task/package.html Tue Sep 27 14:39:11 2005
@@ -0,0 +1,27 @@
+<html>
+<head>
+<!-- 
+ Copyright 1999-2005 The Apache Software Foundation.
+ 
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+ 
+      http://www.apache.org/licenses/LICENSE-2.0
+ 
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+   <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+   <meta name="Author" content="Thomas Dudziak">
+</head>
+<body bgcolor="white">
+  <p>
+  	The <code>org.apache.ddlutils.task</code> package contains the <a href="http://ant.apache.org">Ant</a>
+  	tasks provided by DdlUtils.
+  </p>
+</body>
+</html>