User: vharcq  
  Date: 02/04/23 11:18:26

  Modified:    core/src/xdoclet/tags ClassTagsHandler.java
  Log:
  We have to give the "for_type" (class, method,...) information up to the end of 
getTagValue chain because this is at the end that a CURRENT tag value is checked.  
This should solve the problem of mixing forAllCLASSTag and forAllMETHODTag and the 
opposite.
  Again this patch passes samples and uni tests but users test is more than welcome.
  
  Revision  Changes    Path
  1.38      +2 -2      xdoclet/core/src/xdoclet/tags/ClassTagsHandler.java
  
  Index: ClassTagsHandler.java
  ===================================================================
  RCS file: /cvsroot/xdoclet/xdoclet/core/src/xdoclet/tags/ClassTagsHandler.java,v
  retrieving revision 1.37
  retrieving revision 1.38
  diff -u -w -r1.37 -r1.38
  --- ClassTagsHandler.java     18 Apr 2002 07:14:00 -0000      1.37
  +++ ClassTagsHandler.java     23 Apr 2002 18:18:26 -0000      1.38
  @@ -24,7 +24,7 @@
   /**
    * @author    Ara Abrahamian ([EMAIL PROTECTED])
    * @created   Oct 14, 2001
  - * @version   $Revision: 1.37 $
  + * @version   $Revision: 1.38 $
    */
   public class ClassTagsHandler extends AbstractProgramElementTagsHandler
   {
  @@ -504,7 +504,7 @@
         */
        public String classTagValue( Properties attributes ) throws XDocletException
        {
  -             return dereferenceProperties( getTagValue( attributes, FOR_CLASS ) );
  +             return dereferenceProperties( delimit( getTagValue( attributes, 
FOR_CLASS ), attributes ) );
        }
   
        /**
  
  
  

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

Reply via email to