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>Row</b></em>'.
010 * <!-- end-user-doc -->
011 *
012 * <!-- begin-model-doc -->
013 * Container rows
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.Row#getColumns <em>Columns</em>}</li>
021 * </ul>
022 *
023 * @see org.nasdanika.html.model.bootstrap.BootstrapPackage#getRow()
024 * @model
025 * @generated
026 */
027public interface Row extends BootstrapElement {
028        /**
029         * Returns the value of the '<em><b>Columns</b></em>' containment reference list.
030         * The list contents are of type {@link org.nasdanika.html.model.bootstrap.Column}.
031         * <!-- begin-user-doc -->
032         * <!-- end-user-doc -->
033         * <!-- begin-model-doc -->
034         * Row columns.
035         * <!-- end-model-doc -->
036         * @return the value of the '<em>Columns</em>' containment reference list.
037         * @see org.nasdanika.html.model.bootstrap.BootstrapPackage#getRow_Columns()
038         * @model containment="true"
039         * @generated
040         */
041        EList<Column> getColumns();
042
043} // Row