Class TagSupport

java.lang.Object
jakarta.servlet.jsp.tagext.TagSupport
All Implemented Interfaces:
IterationTag, JspTag, Tag, Serializable
Direct Known Subclasses:
BodyTagSupport

public class TagSupport extends Object implements IterationTag, Serializable
A base class for defining new tag handlers implementing Tag.

The TagSupport class is a utility class intended to be used as the base class for new tag handlers. The TagSupport class implements the Tag and IterationTag interfaces and adds additional convenience methods including getter methods for the properties in Tag. TagSupport has one static method that is included to facilitate coordination among cooperating tags.

Many tag handlers will extend TagSupport and only redefine a few methods.

See Also: