/** */ package fr.obeo.intent.specification; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Value</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link fr.obeo.intent.specification.Value#getValue <em>Value</em>}</li> * <li>{@link fr.obeo.intent.specification.Value#getParameter <em>Parameter</em>}</li> * </ul> * </p> * * @see fr.obeo.intent.specification.SpecificationPackage#getValue() * @model * @generated */ public interface Value extends EObject { /** * 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 fr.obeo.intent.specification.SpecificationPackage#getValue_Value() * @model * @generated */ String getValue(); /** * Sets the value of the '{@link fr.obeo.intent.specification.Value#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); /** * Returns the value of the '<em><b>Parameter</b></em>' reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Parameter</em>' reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Parameter</em>' reference. * @see #setParameter(Parameter) * @see fr.obeo.intent.specification.SpecificationPackage#getValue_Parameter() * @model required="true" * @generated */ Parameter getParameter(); /** * Sets the value of the '{@link fr.obeo.intent.specification.Value#getParameter <em>Parameter</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Parameter</em>' reference. * @see #getParameter() * @generated */ void setParameter(Parameter value); } // Value