xdoclet.tagshandler
Class TagDefTagsHandler
public class TagDefTagsHandler
The implementation of TagDef template tag. It's mainly designed for use by end users that want to define template
tags of their own but don't want to touch xdoclet's tag mapping file and modify the jar file.
- Ara Abrahamian (ara_e@email.com)
String | tagDef(Properties attributes) - Defines a template tag handler for a template tag to TemplateEngine.
|
delimit , expandClassName , generate , getCurrentClass , getCurrentClassTag , getCurrentConstructor , getCurrentField , getCurrentFieldTag , getCurrentMethod , getCurrentMethodTag , getCurrentPackage , getDocletContext , getEngine , getExpandedDelimitedTagValue , getTagValue , getTagValue , getTagValue , hasTag , isTagValueEqual , mandatoryParamNotFound , mandatoryTemplateTagParamNotFound , modifiers , popCurrentClass , pushCurrentClass , setCurrentClass , setCurrentClassTag , setCurrentConstructor , setCurrentField , setCurrentFieldTag , setCurrentMethod , setCurrentMethodTag , setCurrentPackage |
tagDef
public String tagDef(Properties attributes)
throws XDocletException
Defines a template tag handler for a template tag to TemplateEngine.
attributes
- The attributes of the template tag
- Description of the Returned Value
- name = "namespace"
optional = "false"
description = "The template namespace name, 'Merge'
for example if we were to define template namespace 'Merge' this way."
- name = "handler"
optional = "false"
description = "The template tag handler full qualified
class name. It's the class that implements tags of namespace. It should be a public class, with a no
argument public constructor, and should extend xdoclet.XDocletTagSupport."