Pushes (and writes) an open tag onto the stack. @param tagName the tag name. @return this writer. @see #pop()
(String tagName)
| 913 | * @see #pop() |
| 914 | */ |
| 915 | public HTMLWriter push(String tagName) |
| 916 | { |
| 917 | return push(tagName, NO_ATTRIBUTES); |
| 918 | } |
| 919 | |
| 920 | /** |
| 921 | * Pushes (and writes) an open tag onto the stack with attributes. |
no test coverage detected