Return-Path: Delivered-To: apmail-db-torque-dev-archive@www.apache.org Received: (qmail 8852 invoked from network); 3 Dec 2003 15:00:30 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (208.185.179.12) by minotaur-2.apache.org with SMTP; 3 Dec 2003 15:00:30 -0000 Received: (qmail 41625 invoked by uid 500); 3 Dec 2003 15:00:13 -0000 Delivered-To: apmail-db-torque-dev-archive@db.apache.org Received: (qmail 41425 invoked by uid 500); 3 Dec 2003 15:00:12 -0000 Mailing-List: contact torque-dev-help@db.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Apache Torque Developers List" Reply-To: "Apache Torque Developers List" Delivered-To: mailing list torque-dev@db.apache.org Received: (qmail 41412 invoked by uid 500); 3 Dec 2003 15:00:12 -0000 Received: (qmail 41409 invoked from network); 3 Dec 2003 15:00:12 -0000 Received: from unknown (HELO minotaur.apache.org) (209.237.227.194) by daedalus.apache.org with SMTP; 3 Dec 2003 15:00:12 -0000 Received: (qmail 8836 invoked by uid 1280); 3 Dec 2003 15:00:28 -0000 Date: 3 Dec 2003 15:00:28 -0000 Message-ID: <20031203150028.8835.qmail@minotaur.apache.org> From: mpoeschl@apache.org To: db-torque-cvs@apache.org Subject: cvs commit: db-torque/src/generator/src/java/org/apache/torque/engine/database/transform XmlToAppData.java SQLToAppData.java XmlToData.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N 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 Leon Messerschmidt @@ -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 xmlFile. + * @return Database populated by xmlFile. */ 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 Leon Messerschmidt @@ -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.
- * It uses apache Xerces to do the xml parsing. + * AppData java structure. * * @author Leon Messerschmidt * @author Jason van Zyl --------------------------------------------------------------------- To unsubscribe, e-mail: torque-dev-unsubscribe@db.apache.org For additional commands, e-mail: torque-dev-help@db.apache.org