Package htmlflow.visitor
Class Tags
java.lang.Object
htmlflow.visitor.Tags
-
Method Summary
Modifier and TypeMethodDescriptionstatic voidaddAttribute(Appendable out, String attributeName, String attributeValue) Writes"attributeName=attributeValue"static voidaddComment(Appendable out, String comment) Writes"<!--s-->"static voidbeginTag(Appendable out, String elementName) Write"<elementName".static voidendTag(Appendable out, String elementName) Writes"</elementName>".
-
Method Details
-
beginTag
Write"<elementName". -
endTag
Writes"</elementName>". -
addAttribute
Writes"attributeName=attributeValue" -
addComment
Writes"<!--s-->"
-