Author: tfischer
Date: Mon Oct 27 08:14:29 2014
New Revision: 1634471
URL: http://svn.apache.org/r1634471
Log:
fix javadoc of generated files
Modified:
db/torque/torque4/trunk/torque-templates/src/main/resources/org/apache/torque/templates/om/templates/general/saveMethods.vm
Modified:
db/torque/torque4/trunk/torque-templates/src/main/resources/org/apache/torque/templates/om/templates/general/saveMethods.vm
URL:
http://svn.apache.org/viewvc/db/torque/torque4/trunk/torque-templates/src/main/resources/org/apache/torque/templates/om/templates/general/saveMethods.vm?rev=1634471&r1=1634470&r2=1634471&view=diff
==============================================================================
---
db/torque/torque4/trunk/torque-templates/src/main/resources/org/apache/torque/templates/om/templates/general/saveMethods.vm
(original)
+++
db/torque/torque4/trunk/torque-templates/src/main/resources/org/apache/torque/templates/om/templates/general/saveMethods.vm
Mon Oct 27 08:14:29 2014
@@ -41,8 +41,10 @@
* Stores an object in the database. If the object is new,
* it is inserted; otherwise an update is performed.
*
- * @param toSave the object to be saved, not null.
+#if (${saveMethodToSaveVariable})
+ * @param ${saveMethodToSaveVariable} the object to be saved, not null.
*
+#end
* @throws $saveException if an error occurs during saving.
*/
public void save(${methodInputParam}) throws $saveException
@@ -81,7 +83,9 @@
* Stores an object in the database. If the object is new,
* it is inserted; otherwise an update is performed.
*
- * @param toSave the object to be saved, not null.
+#if (${saveMethodToSaveVariable})
+ * @param ${saveMethodToSaveVariable} the object to be saved, not null.
+#end
* @param dbName the name of the database to which the object
* should be saved.
*
@@ -140,7 +144,9 @@
* the save() method and the connection details will be handled
* internally.
*
- * @param toSave the object to be saved, not null.
+#if (${saveMethodToSaveVariable})
+ * @param ${saveMethodToSaveVariable} the object to be saved, not null.
+#end
* @param con the connection to use for saving the object, not null.
*
* @throws $saveException if an error occurs during saving.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]