Java org.springframework.web.servlet.tags.form TagWriter fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.web.servlet.tags.form TagWriter fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.web.servlet.tags.form TagWriter.

The text is from its open source code.

Constructor

TagWriter(PageContext pageContext)
Create a new instance of the TagWriter class that writes to the supplied PageContext .
TagWriter(Writer writer)
Create a new instance of the TagWriter class that writes to the supplied Writer .

Method

voidappendValue(String value)
Close the current opening tag (if necessary) and appends the supplied value as inner text.
voidendTag()
Close the current tag.
voidendTag(boolean enforceClosingTag)
Close the current tag, allowing to enforce a full closing tag.
voidforceBlock()
Indicate that the currently open tag should be closed and marked as a block level element.
voidstartTag(String tagName)
Start a new tag with the supplied name.
voidwriteAttribute(String attributeName, String attributeValue)
Write an HTML attribute with the specified name and value.
voidwriteOptionalAttributeValue(String attributeName, @Nullable String attributeValue)
Write an HTML attribute if the supplied value is not null or zero length.