
org.nasdanika.html.Table Maven / Gradle / Ivy
package org.nasdanika.html;
public interface Table extends RowContainer {
Table caption(Object... content);
interface TableHeader extends RowContainer {
}
interface TableFooter extends RowContainer {
}
interface TableBody extends RowContainer {
}
/**
* Creates ``col`` tag in the ``colgroup``.
* @return
*/
Tag col();
TableHeader header();
TableBody body();
TableFooter footer();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy