Class SimpleHtmlWriter

All Implemented Interfaces:
Closeable, Flushable, Appendable, AutoCloseable

public class SimpleHtmlWriter extends HtmlWriter
Utility class for creating custom HTML.
Example:

String table = new SimpleHtmlWriter().sTag("table").sTag("tr").sTag("td") .append("hello").eTag("td").eTag("tr").eTag("table").toString();

See Also: