User: vharcq  
  Date: 02/04/18 12:16:16

  Modified:    core/src/xdoclet/tags AbstractProgramElementTagsHandler.java
  Log:
  Bug when using class tag value Match Pattern
  
  Revision  Changes    Path
  1.36      +8 -5      
xdoclet/core/src/xdoclet/tags/AbstractProgramElementTagsHandler.java
  
  Index: AbstractProgramElementTagsHandler.java
  ===================================================================
  RCS file: 
/cvsroot/xdoclet/xdoclet/core/src/xdoclet/tags/AbstractProgramElementTagsHandler.java,v
  retrieving revision 1.35
  retrieving revision 1.36
  diff -u -w -r1.35 -r1.36
  --- AbstractProgramElementTagsHandler.java    17 Apr 2002 23:02:29 -0000      1.35
  +++ AbstractProgramElementTagsHandler.java    18 Apr 2002 19:16:16 -0000      1.36
  @@ -36,7 +36,7 @@
   /**
    * @author    Ara Abrahamian ([EMAIL PROTECTED])
    * @created   Oct 15, 2001
  - * @version   $Revision: 1.35 $
  + * @version   $Revision: 1.36 $
    */
   public abstract class AbstractProgramElementTagsHandler extends XDocletTagSupport
   {
  @@ -582,7 +582,7 @@
         */
        protected void forAllMemberTags( String template, Properties attributes, int 
for_type, String resourceKey, String[] arguments ) throws XDocletException
        {
  -             Category cat = Log.getCategory( 
AbstractProgramElementTagsHandler.class, "forAllMethodTags" );
  +             Category cat = Log.getCategory( 
AbstractProgramElementTagsHandler.class, "forAllMemberTags" );
                boolean superclasses = TypeConversionUtil.stringToBoolean( 
attributes.getProperty( "superclasses" ), true );
                XMember member = null;
   
  @@ -611,13 +611,16 @@
                for( int i = 0; i < tags.length; i++ )
                {
   
  -                     String m = getTagValue( attributes, for_type );
  -
                        setCurrentMethodTag( tags[i] );
   
  +                     String m = getTagValue( attributes, for_type );
  +
                        if( cat.isDebugEnabled() )
                        {
  -                             cat.debug( "Tag/Param = " + attributes.getProperty( 
"tagName" ) + "/" + attributes.getProperty( "paramName" ) + " Value = " + m + " 
MatchPattern = " + matchPattern );
  +                             cat.debug( getCurrentMethod().name() + " ** Tag/Param 
= "
  +                                      + attributes.getProperty( "tagName" ) + "/" + 
attributes.getProperty( "paramName" )
  +                                      + "  ** Value = " + m
  +                                      + " MatchPattern = " + matchPattern );
                        }
   
                        if( matchPattern == null )
  
  
  

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

Reply via email to