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

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

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

import gg.jte.TemplateOutput;

import java.util.Map;

@SuppressWarnings("unused") // Called by template code
public interface HtmlInterceptor {

    void onHtmlTagOpened(String name, Map attributes, TemplateOutput output);

    void onHtmlTagClosed(String name, TemplateOutput output);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy