Class AbstractFormTag

All Implemented Interfaces:
IterationTag, JspTag, Tag, TryCatchFinally, Serializable
Direct Known Subclasses:
AbstractDataBoundFormElementTag

public abstract class AbstractFormTag extends HtmlEscapingAwareTag
Base class for all JSP form tags. Provides utility methods for null-safe EL evaluation and for accessing and working with a TagWriter.

Subclasses should implement the writeTagContent(TagWriter) to perform actual tag rendering.

Subclasses (or test classes) can override the createTagWriter() method to redirect output to a Writer other than the JspWriter associated with the current PageContext.

Since:
2.0
Author:
Rob Harrop, Juergen Hoeller
See Also: