/** * <copyright> * </copyright> * * $Id$ */ package no.hal.scxml.scxmlxt; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>EPath Step</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link no.hal.scxml.scxmlxt.EStep#getFeatureName <em>Feature Name</em>}</li> * <li>{@link no.hal.scxml.scxmlxt.EStep#getFilter <em>Filter</em>}</li> * </ul> * </p> * * @see no.hal.scxml.scxmlxt.ScxmlxtPackage#getEStep() * @model * @generated */ public interface EStep extends EObject { /** * Returns the value of the '<em><b>Feature Name</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Feature Name</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Feature Name</em>' attribute. * @see #setFeatureName(String) * @see no.hal.scxml.scxmlxt.ScxmlxtPackage#getEStep_FeatureName() * @model * @generated */ String getFeatureName(); /** * Sets the value of the '{@link no.hal.scxml.scxmlxt.EStep#getFeatureName <em>Feature Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Feature Name</em>' attribute. * @see #getFeatureName() * @generated */ void setFeatureName(String value); /** * Returns the value of the '<em><b>Filter</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Filter</em>' containment reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Filter</em>' containment reference. * @see #setFilter(EStepFilter) * @see no.hal.scxml.scxmlxt.ScxmlxtPackage#getEStep_Filter() * @model containment="true" * @generated */ EStepFilter getFilter(); /** * Sets the value of the '{@link no.hal.scxml.scxmlxt.EStep#getFilter <em>Filter</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Filter</em>' containment reference. * @see #getFilter() * @generated */ void setFilter(EStepFilter value); } // EPathStep