Interface TagPlugin
- 
- All Known Implementing Classes:
- Catch,- Choose,- ForEach,- ForTokens,- If,- Import,- Otherwise,- Out,- Param,- Redirect,- Remove,- Set,- Url,- When
 
 public interface TagPluginThis interface is to be implemented by the plugin author, to supply an alternate implementation of the tag handlers. It can be used to specify the Java codes to be generated when a tag is invoked. An implementation of this interface must be registered in a file named "tagPlugins.xml" under WEB-INF.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddoTag(TagPluginContext ctxt)Generate codes for a custom tag.
 
- 
- 
- 
Method Detail- 
doTagvoid doTag(TagPluginContext ctxt) Generate codes for a custom tag.- Parameters:
- ctxt- a TagPluginContext for accessing Jasper functions
 
 
- 
 
-