Class HtmlElement

All Implemented Interfaces:
Closeable, AutoCloseable, Html, ApiElement<Element>

public class HtmlElement extends AbstractHtmlElement
The root of HTML elements

Usage

    ServletResponse response = new ServletResponse();
    try (HtmlElement html = HtmlElement.of(response)) {
        html.addBody().addHeading("Hello!");
    }
    assertTrue(response.toString().contains("<h1>Hello!</h1>"));
 
For more information see the next sample.