no.tornado.web.html.Caption Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of web Show documentation
Show all versions of web Show documentation
A modern HTML5 Full Stack Web Framework that leverages Java 8 features for expressiveness and beautiful syntax.
The newest version!
package no.tornado.web.html;
public class Caption extends Element {
/**
* Constructor for Element.
*
* @param children a {@link Object} object.
*/
public Caption(Object... children) {
super("caption", children);
}
}