User: stevensa
  Date: 02/07/18 15:59:26

  Modified:    modules/xdoclet/src/xdoclet/modules/doc
                        DocumentTagsSubTask.java
  Log:
  Allow for tag handlers that don't use the XDocletTagSupport class
  
  Revision  Changes    Path
  1.7       +3 -3      
xdoclet/modules/xdoclet/src/xdoclet/modules/doc/DocumentTagsSubTask.java
  
  Index: DocumentTagsSubTask.java
  ===================================================================
  RCS file: 
/cvsroot/xdoclet/xdoclet/modules/xdoclet/src/xdoclet/modules/doc/DocumentTagsSubTask.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -w -r1.6 -r1.7
  --- DocumentTagsSubTask.java  12 Jun 2002 23:27:46 -0000      1.6
  +++ DocumentTagsSubTask.java  18 Jul 2002 22:59:26 -0000      1.7
  @@ -24,7 +24,7 @@
    * @created       June 19, 2001
    * @ant.element   display-name="Tag documentation" name="documenttags" 
parent="xdoclet.modules.doc.DocumentDocletTask"
    * @todo          use DocletTask as parent instead. should be enough.
  - * @version       $Revision: 1.6 $
  + * @version       $Revision: 1.7 $
    */
   public class DocumentTagsSubTask extends TemplateSubTask
   {
  @@ -94,14 +94,14 @@
           System.out.println(Translator.getString(XDocletModulesDocMessages.class, 
XDocletModulesDocMessages.GENERATING_TAGS_MAIN));
           setTemplateURL(getClass().getResource(TAGS_TOC_TEMPLATE_FILE));
           setDestinationFile(GENERATED_TAGS_TOC_FILE_NAME);
  -        addOfType("xdoclet.XDocletTagSupport");
  +        addOfType("xdoclet.template.TemplateTagHandler");
           //setExtentValue( "superclass" );
           startProcess();
   
           System.out.println(Translator.getString(XDocletModulesDocMessages.class, 
XDocletModulesDocMessages.GENERATING_TAGS_MAIN));
           setTemplateURL(getClass().getResource(TAGS_TEMPLATE_FILE));
           setDestinationFile(GENERATED_TAGS_FILE_NAME);
  -        addOfType("xdoclet.XDocletTagSupport");
  +        addOfType("xdoclet.template.TemplateTagHandler");
           //setExtentValue( "superclass" );
           startProcess();
       }
  
  
  


-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
Xdoclet-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/xdoclet-devel

Reply via email to