com.github.beothorn.html.elements.Br Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javaPageRender Show documentation
Show all versions of javaPageRender Show documentation
Write and render html using static constructors
package com.github.beothorn.html.elements;
import com.github.beothorn.html.Renderable;
public class Br implements Renderable {
@Override
public String render() {
return "
";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy