Isn't
exc.append(exception.qualifiedName());
better? (haven't looked at this closely though)

Aslak
----- Original Message -----
From: Vincent Harcq <[EMAIL PROTECTED]>
Date: Tuesday, April 2, 2002 7:26 pm
Subject: [Xdoclet-devel] CVS update: xdoclet/core/src/xdoclet/ejb/tags 
FinderTagsHandler.java

>  User: vharcq  
>  Date: 02/04/02 09:26:04
> 
>  Modified:    core/src/xdoclet/ejb/tags FinderTagsHandler.java
>  Log:
>  bug fix
>  
>  Revision  Changes    Path
>  1.3       +2 -2      
> xdoclet/core/src/xdoclet/ejb/tags/FinderTagsHandler.java  
>  Index: FinderTagsHandler.java
>  ===================================================================
>  RCS file: 
> /cvsroot/xdoclet/xdoclet/core/src/xdoclet/ejb/tags/FinderTagsHandler.j
ava,v  retrieving revision 1.2
>  retrieving revision 1.3
>  diff -u -w -r1.2 -r1.3
>  --- FinderTagsHandler.java        2 Apr 2002 11:29:41 -0000      
>  1.2
>  +++ FinderTagsHandler.java        2 Apr 2002 17:26:04 -0000      
>  1.3
>  @@ -19,7 +19,7 @@
>    *
>    * @author    Vincent Harcq ([EMAIL PROTECTED])
>    * @created   April 2, 2002
>  - * @version   $Revision: 1.2 $
>  + * @version   $Revision: 1.3 $
>    */
>   public class FinderTagsHandler extends HomeTagsHandler{
>   
>  @@ -99,7 +99,7 @@
>               StringBuffer exc = new StringBuffer();
>               for (int j = 0; j < exceptions.length; j++) {
>                   XClass exception = exceptions[j];
>  -                exc.append(exception.getClass().getName());
>  +                exc.append(exception.name());
>                   if (j != exceptions.length - 1)
>                       exc.append(",");
>               }
>  
>  
>  
> 
> _______________________________________________
> Xdoclet-devel mailing list
> [EMAIL PROTECTED]
> https://lists.sourceforge.net/lists/listinfo/xdoclet-devel
> 


_______________________________________________
Xdoclet-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/xdoclet-devel

Reply via email to