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