A wise old hermit known only as Ara Abrahamian 
<[EMAIL PROTECTED]> once said:

>   sad but true: other than the @namespace:tag we have to support 
> @namespace.tag notation too because of JDK1.4's strictness with unknown 
> @tags
>   I made all neccessary changes (mini changes alctually, and changed 
> CustomerBMPBean for test).
>   
>   PLEASE DON'T USE Doc.tags() methods directly, use 
> DocletUtil.getTagsByName.

I haven't time to check them, but a quick search on the source tree threw 
up the following that look suspicious...

ClassTagsHandler line 676:
  public String classCommentTags( Properties attributes ) throws 
XDocletException
  {
    char[] spaces = getIndentChars( attributes );
    Tag[] class_tags = getCurrentClass().tags();
                                          ^^

AbstractProgramElementTagsHandler line 556:
    if( no_comment_signs != null && no_comment_signs.equalsIgnoreCase( 
"true" ) )
    {
      return member.commentText();
    }
    char[] spaces = getIndentChars( attributes );
    Tag[] member_tags = member.tags();
                                ^^

The other occurrences were in DocletUtil, so I assume they're okay.


Andrew.

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

Reply via email to