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

no.tornado.web.html.Head Maven / Gradle / Ivy

Go to download

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;

/**
 * 

Head class.

* * @author edvin * @version $Id: $Id */ public class Head extends Element { /** *

Constructor for Head.

*/ public Head() { super("head"); } /** *

Constructor for Head.

* * @param children a {@link java.lang.Object} object. */ public Head(Object... children) { super("head", children); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy