/** */ package edu.ksu.cis.projects.mdcf.devicemodel.deviceModelingLanguage; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Access Exp</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link edu.ksu.cis.projects.mdcf.devicemodel.deviceModelingLanguage.AccessExp#getBase <em>Base</em>}</li> * <li>{@link edu.ksu.cis.projects.mdcf.devicemodel.deviceModelingLanguage.AccessExp#getAccessor <em>Accessor</em>}</li> * </ul> * </p> * * @see edu.ksu.cis.projects.mdcf.devicemodel.deviceModelingLanguage.DeviceModelingLanguagePackage#getAccessExp() * @model * @generated */ public interface AccessExp extends Exp { /** * Returns the value of the '<em><b>Base</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Base</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>Base</em>' containment reference. * @see #setBase(PrimaryExp) * @see edu.ksu.cis.projects.mdcf.devicemodel.deviceModelingLanguage.DeviceModelingLanguagePackage#getAccessExp_Base() * @model containment="true" * @generated */ PrimaryExp getBase(); /** * Sets the value of the '{@link edu.ksu.cis.projects.mdcf.devicemodel.deviceModelingLanguage.AccessExp#getBase <em>Base</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Base</em>' containment reference. * @see #getBase() * @generated */ void setBase(PrimaryExp value); /** * Returns the value of the '<em><b>Accessor</b></em>' reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Accessor</em>' reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Accessor</em>' reference. * @see #setAccessor(Accessor) * @see edu.ksu.cis.projects.mdcf.devicemodel.deviceModelingLanguage.DeviceModelingLanguagePackage#getAccessExp_Accessor() * @model * @generated */ Accessor getAccessor(); /** * Sets the value of the '{@link edu.ksu.cis.projects.mdcf.devicemodel.deviceModelingLanguage.AccessExp#getAccessor <em>Accessor</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Accessor</em>' reference. * @see #getAccessor() * @generated */ void setAccessor(Accessor value); } // AccessExp