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

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();
	
	
}