/** */ package org.archstudio.xadl3.hints_3_0; import org.eclipse.emf.common.util.EList; 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: * </p> * <ul> * <li>{@link org.archstudio.xadl3.hints_3_0.Value#getValue <em>Value</em>}</li> * <li>{@link org.archstudio.xadl3.hints_3_0.Value#getData <em>Data</em>}</li> * <li>{@link org.archstudio.xadl3.hints_3_0.Value#getType <em>Type</em>}</li> * </ul> * * @see org.archstudio.xadl3.hints_3_0.Hints_3_0Package#getValue() * @model extendedMetaData="name='Value' kind='elementOnly'" * @generated */ public interface Value extends EObject { /** * Returns the value of the '<em><b>Value</b></em>' containment reference list. The list contents are of type * {@link org.archstudio.xadl3.hints_3_0.Value}. <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Value</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>Value</em>' containment reference list. * @see org.archstudio.xadl3.hints_3_0.Hints_3_0Package#getValue_Value() * @model containment="true" extendedMetaData="kind='element' name='value' namespace='##targetNamespace'" * @generated */ EList<Value> getValue(); /** * Returns the value of the '<em><b>Data</b></em>' attribute. <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Data</em>' attribute isn't clear, there really should be more of a description here... * </p> * <!-- end-user-doc --> * * @return the value of the '<em>Data</em>' attribute. * @see #setData(String) * @see org.archstudio.xadl3.hints_3_0.Hints_3_0Package#getValue_Data() * @model dataType="org.eclipse.emf.ecore.xml.type.String" extendedMetaData= * "kind='attribute' name='data' namespace='##targetNamespace'" * @generated */ String getData(); /** * Sets the value of the '{@link org.archstudio.xadl3.hints_3_0.Value#getData <em>Data</em>}' attribute. <!-- * begin-user-doc --> <!-- end-user-doc --> * * @param value the new value of the '<em>Data</em>' attribute. * @see #getData() * @generated */ void setData(String value); /** * Returns the value of the '<em><b>Type</b></em>' attribute. <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Type</em>' attribute isn't clear, there really should be more of a description here... * </p> * <!-- end-user-doc --> * * @return the value of the '<em>Type</em>' attribute. * @see #setType(String) * @see org.archstudio.xadl3.hints_3_0.Hints_3_0Package#getValue_Type() * @model dataType="org.eclipse.emf.ecore.xml.type.String" extendedMetaData= * "kind='attribute' name='type' namespace='##targetNamespace'" * @generated */ String getType(); /** * Sets the value of the '{@link org.archstudio.xadl3.hints_3_0.Value#getType <em>Type</em>}' attribute. <!-- * begin-user-doc --> <!-- end-user-doc --> * * @param value the new value of the '<em>Type</em>' attribute. * @see #getType() * @generated */ void setType(String value); } // Value