blob: 15fd950afd69f2394017b51c628252c0dd8e75f5 [file] [log] [blame]
/**
* *******************************************************************************
* Copyright (c) 2015-2021 Robert Bosch GmbH and others.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Generated using Eclipse EMF
*
* *******************************************************************************
*/
package org.eclipse.app4mc.amalthea.model;
import org.eclipse.emf.common.util.EList;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Memory</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.app4mc.amalthea.model.Memory#getDefinition <em>Definition</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.model.Memory#getMappings <em>Mappings</em>}</li>
* </ul>
*
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getMemory()
* @model
* @generated
*/
public interface Memory extends HwModule, HwDestination {
/**
* Returns the value of the '<em><b>Definition</b></em>' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Definition</em>' reference.
* @see #setDefinition(MemoryDefinition)
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getMemory_Definition()
* @model
* @generated
*/
MemoryDefinition getDefinition();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.model.Memory#getDefinition <em>Definition</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Definition</em>' reference.
* @see #getDefinition()
* @generated
*/
void setDefinition(MemoryDefinition value);
/**
* Returns the value of the '<em><b>Mappings</b></em>' reference list.
* The list contents are of type {@link org.eclipse.app4mc.amalthea.model.MemoryMapping}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* <p><b>Returns an <em>immutable</em> list of mappings (MemoryMapping).</b></p>
* <!-- end-model-doc -->
* @return the value of the '<em>Mappings</em>' reference list.
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getMemory_Mappings()
* @model transient="true" changeable="false" volatile="true" derived="true"
* @generated
*/
EList<MemoryMapping> getMappings();
} // Memory