/** */ 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>Step</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link de.sebastianbenz.xgherkin.gherkin.Step#getDesc <em>Desc</em>}</li> * <li>{@link de.sebastianbenz.xgherkin.gherkin.Step#getRows <em>Rows</em>}</li> * </ul> * </p> * * @see de.sebastianbenz.xgherkin.gherkin.GherkinPackage#getStep() * @model * @generated */ public interface Step extends EObject { /** * Returns the value of the '<em><b>Desc</b></em>' attribute list. * The list contents are of type {@link java.lang.String}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Desc</em>' attribute list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Desc</em>' attribute list. * @see de.sebastianbenz.xgherkin.gherkin.GherkinPackage#getStep_Desc() * @model unique="false" * @generated */ EList<String> getDesc(); /** * Returns the value of the '<em><b>Rows</b></em>' containment reference list. * The list contents are of type {@link de.sebastianbenz.xgherkin.gherkin.ExampleRow}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Rows</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>Rows</em>' containment reference list. * @see de.sebastianbenz.xgherkin.gherkin.GherkinPackage#getStep_Rows() * @model containment="true" * @generated */ EList<ExampleRow> getRows(); } // Step