KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > xdoclet > tagshandler > CommentTagsHandler


1 /*
2  * Copyright (c) 2001, 2002 The XDoclet team
3  * All rights reserved.
4  */

5 package xdoclet.tagshandler;
6
7 import xdoclet.XDocletTagSupport;
8
9 /**
10  * @author Vincent Harcq (vincent.harcq@hubmethods.com)
11  * @created Feb 12, 2002
12  * @xdoclet.taghandler namespace="Comment"
13  * @version $Revision: 1.6 $
14  */

15 public class CommentTagsHandler extends XDocletTagSupport
16 {
17     /**
18      * This tag simply output nothing. It is used to include comments in template files
19      *
20      * @param template
21      * @doc.tag type="block"
22      */

23     public void comment(String JavaDoc template)
24     {
25     }
26
27 }
28
Popular Tags