/** */ package org.archstudio.xadl3.archlight_3_0; import org.archstudio.xadl3.xadlcore_3_0.Extension; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> A representation of the model object '<em><b>Test</b></em>'. <!-- end-user-doc --> <!-- * begin-model-doc --> TODO: @@ <!-- end-model-doc --> * <p> * The following features are supported: * </p> * <ul> * <li>{@link org.archstudio.xadl3.archlight_3_0.Test#getExt <em>Ext</em>}</li> * <li>{@link org.archstudio.xadl3.archlight_3_0.Test#isEnabled <em>Enabled</em>}</li> * <li>{@link org.archstudio.xadl3.archlight_3_0.Test#getId <em>Id</em>}</li> * <li>{@link org.archstudio.xadl3.archlight_3_0.Test#getName <em>Name</em>}</li> * </ul> * * @see org.archstudio.xadl3.archlight_3_0.Archlight_3_0Package#getTest() * @model extendedMetaData="name='Test' kind='elementOnly'" * @generated */ public interface Test extends EObject { /** * Returns the value of the '<em><b>Ext</b></em>' containment reference list. The list contents are of type * {@link org.archstudio.xadl3.xadlcore_3_0.Extension}. <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Ext</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>Ext</em>' containment reference list. * @see org.archstudio.xadl3.archlight_3_0.Archlight_3_0Package#getTest_Ext() * @model containment="true" extendedMetaData="kind='element' name='ext' namespace='##targetNamespace'" * @generated */ EList<Extension> getExt(); /** * Returns the value of the '<em><b>Enabled</b></em>' attribute. <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Enabled</em>' attribute isn't clear, there really should be more of a description * here... * </p> * <!-- end-user-doc --> * * @return the value of the '<em>Enabled</em>' attribute. * @see #isSetEnabled() * @see #unsetEnabled() * @see #setEnabled(boolean) * @see org.archstudio.xadl3.archlight_3_0.Archlight_3_0Package#getTest_Enabled() * @model unsettable="true" dataType="org.eclipse.emf.ecore.xml.type.Boolean" extendedMetaData= * "kind='attribute' name='enabled' namespace='##targetNamespace'" * @generated */ boolean isEnabled(); /** * Sets the value of the '{@link org.archstudio.xadl3.archlight_3_0.Test#isEnabled <em>Enabled</em>}' attribute. * <!-- begin-user-doc --> <!-- end-user-doc --> * * @param value the new value of the '<em>Enabled</em>' attribute. * @see #isSetEnabled() * @see #unsetEnabled() * @see #isEnabled() * @generated */ void setEnabled(boolean value); /** * Unsets the value of the '{@link org.archstudio.xadl3.archlight_3_0.Test#isEnabled <em>Enabled</em>}' attribute. * <!-- begin-user-doc --> <!-- end-user-doc --> * * @see #isSetEnabled() * @see #isEnabled() * @see #setEnabled(boolean) * @generated */ void unsetEnabled(); /** * Returns whether the value of the '{@link org.archstudio.xadl3.archlight_3_0.Test#isEnabled <em>Enabled</em>}' * attribute is set. <!-- begin-user-doc --> <!-- end-user-doc --> * * @return whether the value of the '<em>Enabled</em>' attribute is set. * @see #unsetEnabled() * @see #isEnabled() * @see #setEnabled(boolean) * @generated */ boolean isSetEnabled(); /** * Returns the value of the '<em><b>Id</b></em>' attribute. <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Id</em>' attribute isn't clear, there really should be more of a description here... * </p> * <!-- end-user-doc --> * * @return the value of the '<em>Id</em>' attribute. * @see #setId(String) * @see org.archstudio.xadl3.archlight_3_0.Archlight_3_0Package#getTest_Id() * @model id="true" dataType="org.eclipse.emf.ecore.xml.type.ID" extendedMetaData= * "kind='attribute' name='id' namespace='##targetNamespace'" * @generated */ String getId(); /** * Sets the value of the '{@link org.archstudio.xadl3.archlight_3_0.Test#getId <em>Id</em>}' attribute. <!-- * begin-user-doc --> <!-- end-user-doc --> * * @param value the new value of the '<em>Id</em>' attribute. * @see #getId() * @generated */ void setId(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.archlight_3_0.Archlight_3_0Package#getTest_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.archlight_3_0.Test#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); } // Test