![JAR search and dependency download from the Maven repository](/logo.png)
org.bitbucket.gkutiel.in.my.mind.handler.Html Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of in-my-mind Show documentation
Show all versions of in-my-mind Show documentation
An opinionated web framework on top of in-core
The newest version!
package org.bitbucket.gkutiel.in.my.mind.handler;
import j2html.tags.ContainerTag;
public abstract class Html extends Textual {
@Override protected String getContentType() {
return "text/html";
}
protected abstract ContainerTag getHtml();
@Override protected String getText() {
return getHtml().render();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy