seade 2004/10/19 18:26:18
Modified: src/generator/src/templates/om Tag: TORQUE_3_1_BRANCH
ObjectWithManager.vm Peer.vm Object.vm
BaseManager.vm
xdocs Tag: TORQUE_3_1_BRANCH changes.xml
Log:
TRQS236 Generated code contains Javadoc error "@param tags incorrect".
Revision Changes Path
No revision
No revision
1.5.2.4 +3 -3 db-torque/src/generator/src/templates/om/ObjectWithManager.vm
Index: ObjectWithManager.vm
===================================================================
RCS file: /home/cvs/db-torque/src/generator/src/templates/om/ObjectWithManager.vm,v
retrieving revision 1.5.2.3
retrieving revision 1.5.2.4
diff -u -r1.5.2.3 -r1.5.2.4
--- ObjectWithManager.vm 19 Oct 2004 23:20:11 -0000 1.5.2.3
+++ ObjectWithManager.vm 20 Oct 2004 01:26:18 -0000 1.5.2.4
@@ -263,7 +263,7 @@
/**
* Declares an association between this object and a $interfaceName object
*
- * @param $interfaceName v
+ * @param v $interfaceName
* @throws TorqueException
*/
public void set${pVarName}($interfaceName v) throws TorqueException
@@ -1194,7 +1194,7 @@
/**
* Set the PrimaryKey using ObjectKey.
*
- * @param ObjectKey $clo
+ * @param $clo ObjectKey
*/
public void setPrimaryKey(ObjectKey $clo)
$throwsClause {
@@ -1333,7 +1333,7 @@
#foreach ($col in $table.PrimaryKey)
#set ( $clo=$col.UncapitalisedJavaName )
#set ( $cjtype= $col.JavaNative )
- * @param $cjtype $clo
+ * @param $clo $cjtype
#end
*/
public void setPrimaryKey($argList)
1.5.2.10 +2 -1 db-torque/src/generator/src/templates/om/Peer.vm
Index: Peer.vm
===================================================================
RCS file: /home/cvs/db-torque/src/generator/src/templates/om/Peer.vm,v
retrieving revision 1.5.2.9
retrieving revision 1.5.2.10
diff -u -r1.5.2.9 -r1.5.2.10
--- Peer.vm 10 Sep 2004 09:36:39 -0000 1.5.2.9
+++ Peer.vm 20 Oct 2004 01:26:18 -0000 1.5.2.10
@@ -421,6 +421,7 @@
* Grabs the raw Village records to be formed into objects.
* This method should be used for transactions
*
+ * @param criteria object used to create the SELECT statement.
* @param con the connection to use
* @throws TorqueException Any exceptions caught during processing will be
* rethrown wrapped into a TorqueException.
@@ -1121,7 +1122,7 @@
#set ( $cjtype= $col.JavaNative )
* @param $clo $cjtype
#end
- * @param Connection con
+ * @param con Connection
*/
public static $table.JavaName ${retrieveMethod}(
#foreach ($col in $table.PrimaryKey)
1.7.2.6 +2 -2 db-torque/src/generator/src/templates/om/Object.vm
Index: Object.vm
===================================================================
RCS file: /home/cvs/db-torque/src/generator/src/templates/om/Object.vm,v
retrieving revision 1.7.2.5
retrieving revision 1.7.2.6
diff -u -r1.7.2.5 -r1.7.2.6
--- Object.vm 19 Oct 2004 23:20:11 -0000 1.7.2.5
+++ Object.vm 20 Oct 2004 01:26:18 -0000 1.7.2.6
@@ -1219,7 +1219,7 @@
/**
* Set the PrimaryKey using ObjectKey.
*
- * @param $clo ObjectKey
+ * @param key $clo ObjectKey
*/
public void setPrimaryKey(ObjectKey key)
$throwsClause
@@ -1359,7 +1359,7 @@
#foreach ($col in $table.PrimaryKey)
#set ( $clo=$col.UncapitalisedJavaName )
#set ( $cjtype= $col.JavaNative )
- * @param $cjtype $clo
+ * @param $clo $cjtype
#end
*/
public void setPrimaryKey($argList)
1.3.2.1 +8 -2 db-torque/src/generator/src/templates/om/BaseManager.vm
Index: BaseManager.vm
===================================================================
RCS file: /home/cvs/db-torque/src/generator/src/templates/om/BaseManager.vm,v
retrieving revision 1.3
retrieving revision 1.3.2.1
diff -u -r1.3 -r1.3.2.1
--- BaseManager.vm 7 Aug 2003 13:13:00 -0000 1.3
+++ BaseManager.vm 20 Oct 2004 01:26:18 -0000 1.3.2.1
@@ -86,6 +86,8 @@
* Static accessor for the @see #getInstanceImpl(ObjectKey, boolean).
*
* @param id an <code>ObjectKey</code> value
+ * @param fromCache if true, look for cached ${interfaceName}s before loading
+ * from storage.
* @return a <code>${interfaceName}</code> value
* @exception TorqueException if an error occurs
*/
@@ -115,6 +117,8 @@
* Static accessor for the @see #getInstanceImpl(ObjectKey).
*
* @param id an <code>ObjectKey</code> value
+ * @param fromCache if true, look for cached ${interfaceName}s before loading
+ * from storage.
* @return a <code>${interfaceName}</code> value
* @exception TorqueException if an error occurs
*/
@@ -142,6 +146,8 @@
* Static accessor for the @see #getInstancesImpl(List, boolean).
*
* @param ids a <code>List</code> value
+ * @param fromCache if true, look for cached ${interfaceName}s before loading
+ * from storage.
* @return a <code>List</code> value
* @exception TorqueException if an error occurs
*/
@@ -287,7 +293,7 @@
/**
* Gets a list of ModuleEntities based on id's.
*
- * @param moduleIds a <code>NumberKey[]</code> value
+ * @param ids a <code>NumberKey[]</code> value
* @return a <code>List</code> value
* @exception TorqueException if an error occurs
*/
No revision
No revision
1.140.2.7 +3 -0 db-torque/xdocs/changes.xml
Index: changes.xml
===================================================================
RCS file: /home/cvs/db-torque/xdocs/changes.xml,v
retrieving revision 1.140.2.6
retrieving revision 1.140.2.7
diff -u -r1.140.2.6 -r1.140.2.7
--- changes.xml 19 Oct 2004 23:20:11 -0000 1.140.2.6
+++ changes.xml 20 Oct 2004 01:26:18 -0000 1.140.2.7
@@ -33,6 +33,9 @@
<action type="update" dev="seade">
TRQS235 Generated code contains Javadoc error "sentence is different...".
</action>
+ <action type="update" dev="seade">
+ TRQS236 Generated code contains Javadoc error "@param tags incorrect".
+ </action>
</release>
<release version="3.1.1-RC3" date="2004-10-16">
<action type="update" dev="henning">
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]