User: ko5tik
Date: 02/04/19 10:07:53
Modified: core/src/xdoclet/tags ParameterTagsHandler.java
Log:
methodParamType now cares for array types dimensions
Revision Changes Path
1.13 +4 -3 xdoclet/core/src/xdoclet/tags/ParameterTagsHandler.java
Index: ParameterTagsHandler.java
===================================================================
RCS file: /cvsroot/xdoclet/xdoclet/core/src/xdoclet/tags/ParameterTagsHandler.java,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -w -r1.12 -r1.13
--- ParameterTagsHandler.java 17 Apr 2002 23:02:29 -0000 1.12
+++ ParameterTagsHandler.java 19 Apr 2002 17:07:52 -0000 1.13
@@ -16,7 +16,7 @@
/**
* @author Ara Abrahamian ([EMAIL PROTECTED])
* @created Oct 15, 2001
- * @version $Revision: 1.12 $
+ * @version $Revision: 1.13 $
*/
public class ParameterTagsHandler extends AbstractProgramElementTagsHandler
{
@@ -38,7 +38,8 @@
/**
* Returns the type of the current method parameter, current method parameter
- * is set inside a forAllMethodParams tag in each iteration.
+ * is set inside a forAllMethodParams tag in each iteration. do not forget to
+ * add array dimensions if any
*
* @return Description of the Returned Value
* @exception XDocletException Description of Exception
@@ -46,7 +47,7 @@
*/
public String methodParamType() throws XDocletException
{
- return currentMethodParameter.type().qualifiedName();
+ return currentMethodParameter.type().qualifiedName() +
currentMethodParameter.dimensionAsString();
}
/**
_______________________________________________
Xdoclet-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/xdoclet-devel