001package org.nasdanika.html.model.bootstrap.gen; 002 003/** 004 * Creates a respective section in the table based on the containment reference - header, body, footer. 005 * @author Pavel 006 * 007 */ 008public class TableSectionConsumerFactoryAdapter<M extends org.nasdanika.html.model.bootstrap.TableSection, T extends org.nasdanika.html.bootstrap.RowContainer<?,?>> extends TableRowContainerConsumerFactoryAdapter<M,T> { 009 010 public TableSectionConsumerFactoryAdapter(M tableSection) { 011 super(tableSection); 012 } 013 014}