mpoeschl 2003/12/03 07:00:28
Modified: src/generator/src/java/org/apache/torque/engine/database/transform
XmlToAppData.java SQLToAppData.java XmlToData.java
Log:
javadocs
Revision Changes Path
1.12 +5 -5
db-torque/src/generator/src/java/org/apache/torque/engine/database/transform/XmlToAppData.java
Index: XmlToAppData.java
===================================================================
RCS file:
/home/cvs/db-torque/src/generator/src/java/org/apache/torque/engine/database/transform/XmlToAppData.java,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- XmlToAppData.java 29 Oct 2003 01:19:10 -0000 1.11
+++ XmlToAppData.java 3 Dec 2003 15:00:28 -0000 1.12
@@ -80,7 +80,7 @@
import org.xml.sax.helpers.DefaultHandler;
/**
- * A Class that is used to parse an input xml schema file and creates an AppData
+ * A Class that is used to parse an input xml schema file and creates a Database
* java structure.
*
* @author <a href="mailto:[EMAIL PROTECTED]">Leon Messerschmidt</a>
@@ -147,10 +147,10 @@
/**
* Parses a XML input file and returns a newly created and
- * populated AppData structure.
+ * populated Database structure.
*
* @param xmlFile The input file to parse.
- * @return AppData populated by <code>xmlFile</code>.
+ * @return Database populated by <code>xmlFile</code>.
*/
public Database parseFile(String xmlFile)
throws EngineException
@@ -221,7 +221,7 @@
* @param publicId The public identifier of the external entity
* @param systemId The system identifier of the external entity
* @return an InputSource for the database.dtd file
- * @see
org.apache.torque.engine.database.transform.DTDResolver#resolveEntity(String, String)
+ * @see DTDResolver#resolveEntity(String, String)
*/
public InputSource resolveEntity(String publicId, String systemId)
throws SAXException
1.5 +6 -7
db-torque/src/generator/src/java/org/apache/torque/engine/database/transform/SQLToAppData.java
Index: SQLToAppData.java
===================================================================
RCS file:
/home/cvs/db-torque/src/generator/src/java/org/apache/torque/engine/database/transform/SQLToAppData.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- SQLToAppData.java 5 Oct 2003 14:14:03 -0000 1.4
+++ SQLToAppData.java 3 Dec 2003 15:00:28 -0000 1.5
@@ -69,9 +69,9 @@
import org.apache.torque.engine.sql.Token;
/**
- * A Class that converts an sql input file to an AppData
- * structure. The class makes use of SQL Scanner to get
- * sql tokens and the parses these to create the AppData
+ * A Class that converts an sql input file to a Database structure.
+ * The class makes use of SQL Scanner to get
+ * sql tokens and the parses these to create the Database
* class. SQLToAppData is in effect a simplified sql parser.
*
* @author <a href="mailto:[EMAIL PROTECTED]">Leon Messerschmidt</a>
@@ -133,10 +133,9 @@
}
/**
- * Move to the next token. Throws an exception
- * if there is no more tokens available.
+ * Move to the next token.
*
- * @throws ParseException
+ * @throws ParseException if there is no more tokens available.
*/
private void next() throws ParseException
{
1.11 +2 -3
db-torque/src/generator/src/java/org/apache/torque/engine/database/transform/XmlToData.java
Index: XmlToData.java
===================================================================
RCS file:
/home/cvs/db-torque/src/generator/src/java/org/apache/torque/engine/database/transform/XmlToData.java,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- XmlToData.java 31 Jul 2003 15:26:58 -0000 1.10
+++ XmlToData.java 3 Dec 2003 15:00:28 -0000 1.11
@@ -80,8 +80,7 @@
/**
* A Class that is used to parse an input xml schema file and creates and
- * AppData java structure. <br>
- * It uses apache Xerces to do the xml parsing.
+ * AppData java structure.
*
* @author <a href="mailto:[EMAIL PROTECTED]">Leon Messerschmidt</a>
* @author <a href="mailto:[EMAIL PROTECTED]">Jason van Zyl</a>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]