/** */ package de.sebastianbenz.xgherkin.gherkin; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Example Row</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link de.sebastianbenz.xgherkin.gherkin.ExampleRow#getCells <em>Cells</em>}</li> * </ul> * </p> * * @see de.sebastianbenz.xgherkin.gherkin.GherkinPackage#getExampleRow() * @model * @generated */ public interface ExampleRow extends EObject { /** * Returns the value of the '<em><b>Cells</b></em>' containment reference list. * The list contents are of type {@link de.sebastianbenz.xgherkin.gherkin.ExampleCell}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Cells</em>' containment reference list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Cells</em>' containment reference list. * @see de.sebastianbenz.xgherkin.gherkin.GherkinPackage#getExampleRow_Cells() * @model containment="true" * @generated */ EList<ExampleCell> getCells(); } // ExampleRow