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

org.bitbucket.gkutiel.in.my.mind.handler.Html Maven / Gradle / Ivy

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