blob: 6354e85462c4589bd9972f909752e1df80f97284 [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>Abstract Memory Element</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.app4mc.amalthea.model.AbstractMemoryElement#getSize <em>Size</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.model.AbstractMemoryElement#getMappings <em>Mappings</em>}</li>
* </ul>
*
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getAbstractMemoryElement()
* @model abstract="true"
* @generated
*/
public interface AbstractMemoryElement extends ReferableBaseObject, ITaggable {
/**
* Returns the value of the '<em><b>Size</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Specifying the size of the element corresponding to the needed memory allocation
* <!-- end-model-doc -->
* @return the value of the '<em>Size</em>' containment reference.
* @see #setSize(DataSize)
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getAbstractMemoryElement_Size()
* @model containment="true"
* @generated
*/
DataSize getSize();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.model.AbstractMemoryElement#getSize <em>Size</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Size</em>' containment reference.
* @see #getSize()
* @generated
*/
void setSize(DataSize 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#getAbstractMemoryElement_Mappings()
* @model transient="true" changeable="false" volatile="true" derived="true"
* @generated
*/
EList<MemoryMapping> getMappings();
} // AbstractMemoryElement