All Downloads are FREE. Search and download functionalities are using the official Maven repository.

gg.jte.html.HtmlContent Maven / Gradle / Ivy

There is a newer version: 3.1.12
Show newest version
package gg.jte.html;

import gg.jte.TemplateOutput;
import gg.jte.Content;

@SuppressWarnings("unused") // By template code with ContentType.Html
public interface HtmlContent extends Content {
    void writeTo(HtmlTemplateOutput output);

    @Override
    default void writeTo(TemplateOutput output) {
        writeTo((HtmlTemplateOutput)output);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy