/** */ package org.archstudio.xadl3.structure_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>Interface</b></em>'. <!-- end-user-doc --> <!-- * begin-model-doc --> An interface is a point through which a brick (component or connector) communicates with the * outside world. In general, required and provided services will be associated with interfaces. <!-- end-model-doc --> * <p> * The following features are supported: * </p> * <ul> * <li>{@link org.archstudio.xadl3.structure_3_0.Interface#getExt <em>Ext</em>}</li> * <li>{@link org.archstudio.xadl3.structure_3_0.Interface#getDirection <em>Direction</em>}</li> * <li>{@link org.archstudio.xadl3.structure_3_0.Interface#getId <em>Id</em>}</li> * <li>{@link org.archstudio.xadl3.structure_3_0.Interface#getName <em>Name</em>}</li> * </ul> * * @see org.archstudio.xadl3.structure_3_0.Structure_3_0Package#getInterface() * @model extendedMetaData="name='Interface' kind='elementOnly'" * @generated */ public interface Interface 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.structure_3_0.Structure_3_0Package#getInterface_Ext() * @model containment="true" extendedMetaData="kind='element' name='ext' namespace='##targetNamespace'" * @generated */ EList<Extension> getExt(); /** * Returns the value of the '<em><b>Direction</b></em>' attribute. The literals are from the enumeration * {@link org.archstudio.xadl3.structure_3_0.Direction}. <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Direction</em>' attribute isn't clear, there really should be more of a description * here... * </p> * <!-- end-user-doc --> * * @return the value of the '<em>Direction</em>' attribute. * @see org.archstudio.xadl3.structure_3_0.Direction * @see #isSetDirection() * @see #unsetDirection() * @see #setDirection(Direction) * @see org.archstudio.xadl3.structure_3_0.Structure_3_0Package#getInterface_Direction() * @model unsettable="true" extendedMetaData="kind='attribute' name='direction' namespace='##targetNamespace'" * @generated */ Direction getDirection(); /** * Sets the value of the '{@link org.archstudio.xadl3.structure_3_0.Interface#getDirection <em>Direction</em>}' * attribute. <!-- begin-user-doc --> <!-- end-user-doc --> * * @param value the new value of the '<em>Direction</em>' attribute. * @see org.archstudio.xadl3.structure_3_0.Direction * @see #isSetDirection() * @see #unsetDirection() * @see #getDirection() * @generated */ void setDirection(Direction value); /** * Unsets the value of the '{@link org.archstudio.xadl3.structure_3_0.Interface#getDirection <em>Direction</em>}' * attribute. <!-- begin-user-doc --> <!-- end-user-doc --> * * @see #isSetDirection() * @see #getDirection() * @see #setDirection(Direction) * @generated */ void unsetDirection(); /** * Returns whether the value of the '{@link org.archstudio.xadl3.structure_3_0.Interface#getDirection * <em>Direction</em>}' attribute is set. <!-- begin-user-doc --> <!-- end-user-doc --> * * @return whether the value of the '<em>Direction</em>' attribute is set. * @see #unsetDirection() * @see #getDirection() * @see #setDirection(Direction) * @generated */ boolean isSetDirection(); /** * 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.structure_3_0.Structure_3_0Package#getInterface_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.structure_3_0.Interface#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.structure_3_0.Structure_3_0Package#getInterface_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.structure_3_0.Interface#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); } // Interface