/** * <copyright> * </copyright> * * $Id$ */ package org.ubicompforall.simplelanguage; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Conditional Step</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.ubicompforall.simplelanguage.ConditionalStep#getStepSequence <em>Step Sequence</em>}</li> * <li>{@link org.ubicompforall.simplelanguage.ConditionalStep#getConditions <em>Conditions</em>}</li> * </ul> * </p> * * @see org.ubicompforall.simplelanguage.SimpleLanguagePackage#getConditionalStep() * @model * @generated */ public interface ConditionalStep extends Step { /** * Returns the value of the '<em><b>Step Sequence</b></em>' containment reference list. * The list contents are of type {@link org.ubicompforall.simplelanguage.Step}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Step Sequence</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>Step Sequence</em>' containment reference list. * @see org.ubicompforall.simplelanguage.SimpleLanguagePackage#getConditionalStep_StepSequence() * @model containment="true" * @generated */ EList<Step> getStepSequence(); /** * Returns the value of the '<em><b>Conditions</b></em>' containment reference list. * The list contents are of type {@link org.ubicompforall.simplelanguage.Condition}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Conditions</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>Conditions</em>' containment reference list. * @see org.ubicompforall.simplelanguage.SimpleLanguagePackage#getConditionalStep_Conditions() * @model containment="true" required="true" * @generated */ EList<Condition> getConditions(); } // ConditionalStep