Return-Path: Delivered-To: apmail-db-torque-dev-archive@db.apache.org Received: (qmail 46423 invoked by uid 500); 5 Aug 2003 18:09:28 -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 46376 invoked by uid 500); 5 Aug 2003 18:09:28 -0000 Received: (qmail 46351 invoked from network); 5 Aug 2003 18:09:28 -0000 Received: from unknown (HELO minotaur.apache.org) (209.237.227.194) by daedalus.apache.org with SMTP; 5 Aug 2003 18:09:28 -0000 Received: (qmail 94109 invoked by uid 1280); 5 Aug 2003 18:09:36 -0000 Date: 5 Aug 2003 18:09:36 -0000 Message-ID: <20030805180936.94108.qmail@minotaur.apache.org> From: mpoeschl@apache.org To: db-torque-cvs@apache.org Subject: cvs commit: db-torque/src/java/org/apache/torque TorqueInstance.java Torque.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N mpoeschl 2003/08/05 11:09:36 Modified: src/java/org/apache/torque TorqueInstance.java Torque.java Log: javadoc changes Revision Changes Path 1.5 +7 -19 db-torque/src/java/org/apache/torque/TorqueInstance.java Index: TorqueInstance.java =================================================================== RCS file: /home/cvs/db-torque/src/java/org/apache/torque/TorqueInstance.java,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- TorqueInstance.java 24 Jul 2003 10:33:08 -0000 1.4 +++ TorqueInstance.java 5 Aug 2003 18:09:35 -0000 1.5 @@ -104,37 +104,25 @@ /** A constant for default. */ private static final String DEFAULT_NAME = "default"; - /** - * The db name that is specified as the default in the property file - */ + /** The db name that is specified as the default in the property file */ private String defaultDBName; - /** - * The global cache of database maps - */ + /** The global cache of database maps */ private Map dbMaps; - /** - * The cache of DataSourceFactory's - */ + /** The cache of DataSourceFactory's */ private Map dsFactoryMap; - /** - * The cache of DB adapter keys - */ + /** The cache of DB adapter keys */ private Map adapterMap; /** A repository of Manager instances. */ private Map managers; - /** - * Torque-specific configuration. - */ + /** Torque-specific configuration. */ private Configuration conf; - /** - * flag to set to true once this class has been initialized - */ + /** flag to set to true once this class has been initialized */ private boolean isInit = false; /** 1.91 +5 -6 db-torque/src/java/org/apache/torque/Torque.java Index: Torque.java =================================================================== RCS file: /home/cvs/db-torque/src/java/org/apache/torque/Torque.java,v retrieving revision 1.90 retrieving revision 1.91 diff -u -r1.90 -r1.91 --- Torque.java 24 Jul 2003 10:31:27 -0000 1.90 +++ Torque.java 5 Aug 2003 18:09:35 -0000 1.91 @@ -97,8 +97,7 @@ public static final String DATABASE_DEFAULT = "database.default"; /** - * A prefix for Manager properties in - * the configuration. + * A prefix for Manager properties in the configuration. */ public static final String MANAGER_PREFIX = "managed_class."; @@ -128,8 +127,7 @@ /** * C'tor for usage with the Stratum Lifecycle. * - * @todo Should be made private or protected once Stratum is - * removed. + * @todo Should be made private or protected once Stratum is removed. */ public Torque() { @@ -295,6 +293,7 @@ } /** + * This method returns a Connecton using the given database name. * * @param name The database name. * @return a database connection @@ -393,7 +392,7 @@ /** * Shuts down the service, Lifecycle style - * + * @see org.apache.stratum.lifecycle.Disposable */ public void dispose() { --------------------------------------------------------------------- To unsubscribe, e-mail: torque-dev-unsubscribe@db.apache.org For additional commands, e-mail: torque-dev-help@db.apache.org