001/**
002 */
003package org.nasdanika.html.model.bootstrap;
004
005import org.eclipse.emf.common.util.EList;
006
007/**
008 * <!-- begin-user-doc -->
009 * A representation of the model object '<em><b>Table Row Container</b></em>'.
010 * <!-- end-user-doc -->
011 *
012 * <!-- begin-model-doc -->
013 * Base class for containers of rows - table, header, body, footer.
014 * <!-- end-model-doc -->
015 *
016 * <p>
017 * The following features are supported:
018 * </p>
019 * <ul>
020 *   <li>{@link org.nasdanika.html.model.bootstrap.TableRowContainer#getRows <em>Rows</em>}</li>
021 * </ul>
022 *
023 * @see org.nasdanika.html.model.bootstrap.BootstrapPackage#getTableRowContainer()
024 * @model abstract="true"
025 * @generated
026 */
027public interface TableRowContainer extends BootstrapElement {
028        /**
029         * Returns the value of the '<em><b>Rows</b></em>' containment reference list.
030         * The list contents are of type {@link org.nasdanika.html.model.bootstrap.TableRow}.
031         * <!-- begin-user-doc -->
032         * <!-- end-user-doc -->
033         * <!-- begin-model-doc -->
034         * Table rows.
035         * <!-- end-model-doc -->
036         * @return the value of the '<em>Rows</em>' containment reference list.
037         * @see org.nasdanika.html.model.bootstrap.BootstrapPackage#getTableRowContainer_Rows()
038         * @model containment="true"
039         *        annotation="urn:org.nasdanika homogenous='true'"
040         * @generated
041         */
042        EList<TableRow> getRows();
043
044} // TableRowContainer