javadoc updates
[utils] / test / enterprise / src / main / java / org / wamblee / support / persistence / DatabaseStarter.java
index a3174190c4979c8447857b829e5371bade93d53f..1afefd808046667b129f91de6cfafd4fcb36ea37 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2005 the original author or authors.
+ * Copyright 2005-2010 the original author or authors.
  * 
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * 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.
- */
+ */ 
 package org.wamblee.support.persistence;
 
 /**
- * This class is used for starting the database from ant.
+ * This class is used for starting the database as a main program.
  */
 public class DatabaseStarter {
 
@@ -37,10 +37,10 @@ public class DatabaseStarter {
      * where the database class name must be the name of a concrete subclass of
      * {@link Database}.
      * 
-     * @param args
+     * @param aArgs
      */
-    public static void main(String[] args) throws Exception {
-        String clazz = args[0];
+    public static void main(String[] aArgs) throws Exception {
+        String clazz = aArgs[0];
         try {
             new DatabaseStarter(Class.forName(clazz)).start();
         } catch (Exception e) {