/** */ package net.certware.intent.state.stateSpecification; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>State</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link net.certware.intent.state.stateSpecification.State#isInitial <em>Initial</em>}</li> * <li>{@link net.certware.intent.state.stateSpecification.State#getValue <em>Value</em>}</li> * </ul> * * @see net.certware.intent.state.stateSpecification.StateSpecificationPackage#getState() * @model * @generated */ public interface State extends EObject { /** * Returns the value of the '<em><b>Initial</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Initial</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Initial</em>' attribute. * @see #setInitial(boolean) * @see net.certware.intent.state.stateSpecification.StateSpecificationPackage#getState_Initial() * @model * @generated */ boolean isInitial(); /** * Sets the value of the '{@link net.certware.intent.state.stateSpecification.State#isInitial <em>Initial</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Initial</em>' attribute. * @see #isInitial() * @generated */ void setInitial(boolean value); /** * Returns the value of the '<em><b>Value</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Value</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Value</em>' attribute. * @see #setValue(String) * @see net.certware.intent.state.stateSpecification.StateSpecificationPackage#getState_Value() * @model * @generated */ String getValue(); /** * Sets the value of the '{@link net.certware.intent.state.stateSpecification.State#getValue <em>Value</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Value</em>' attribute. * @see #getValue() * @generated */ void setValue(String value); } // State