/** */ package org.archstudio.xadl3.hints_3_0; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> A representation of the model object '<em><b>Hint</b></em>'. <!-- end-user-doc --> <!-- * begin-model-doc --> This type defines a basic name-value pair hint. <!-- end-model-doc --> * <p> * The following features are supported: * </p> * <ul> * <li>{@link org.archstudio.xadl3.hints_3_0.Hint#getValue <em>Value</em>}</li> * <li>{@link org.archstudio.xadl3.hints_3_0.Hint#getHint <em>Hint</em>}</li> * <li>{@link org.archstudio.xadl3.hints_3_0.Hint#getName <em>Name</em>}</li> * </ul> * * @see org.archstudio.xadl3.hints_3_0.Hints_3_0Package#getHint() * @model extendedMetaData="name='Hint' kind='elementOnly'" * @generated */ public interface Hint extends EObject { /** * Returns the value of the '<em><b>Value</b></em>' containment reference. <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Value</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>Value</em>' containment reference. * @see #setValue(Value) * @see org.archstudio.xadl3.hints_3_0.Hints_3_0Package#getHint_Value() * @model containment="true" required="true" extendedMetaData= * "kind='element' name='value' namespace='##targetNamespace'" * @generated */ Value getValue(); /** * Sets the value of the '{@link org.archstudio.xadl3.hints_3_0.Hint#getValue <em>Value</em>}' containment * reference. <!-- begin-user-doc --> <!-- end-user-doc --> * * @param value the new value of the '<em>Value</em>' containment reference. * @see #getValue() * @generated */ void setValue(Value value); /** * Returns the value of the '<em><b>Hint</b></em>' attribute. <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Hint</em>' attribute isn't clear, there really should be more of a description here... * </p> * <!-- end-user-doc --> * * @return the value of the '<em>Hint</em>' attribute. * @see #setHint(String) * @see org.archstudio.xadl3.hints_3_0.Hints_3_0Package#getHint_Hint() * @model dataType="org.eclipse.emf.ecore.xml.type.String" extendedMetaData= * "kind='attribute' name='hint' namespace='##targetNamespace'" * @generated */ String getHint(); /** * Sets the value of the '{@link org.archstudio.xadl3.hints_3_0.Hint#getHint <em>Hint</em>}' attribute. <!-- * begin-user-doc --> <!-- end-user-doc --> * * @param value the new value of the '<em>Hint</em>' attribute. * @see #getHint() * @generated */ void setHint(String value); /** * Returns the value of the '<em><b>Name</b></em>' attribute. <!-- begin-user-doc --> * <p> * If the meaning of the '<em>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>Name</em>' attribute. * @see #setName(String) * @see org.archstudio.xadl3.hints_3_0.Hints_3_0Package#getHint_Name() * @model dataType="org.eclipse.emf.ecore.xml.type.String" extendedMetaData= * "kind='attribute' name='name' namespace='##targetNamespace'" * @generated */ String getName(); /** * Sets the value of the '{@link org.archstudio.xadl3.hints_3_0.Hint#getName <em>Name</em>}' attribute. <!-- * begin-user-doc --> <!-- end-user-doc --> * * @param value the new value of the '<em>Name</em>' attribute. * @see #getName() * @generated */ void setName(String value); } // Hint