blob: d07313ac5df3fadbb44131276ed153c14c5bc8af [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>Component</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.app4mc.amalthea.model.Component#getPorts <em>Ports</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.model.Component#getProcesses <em>Processes</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.model.Component#getRunnables <em>Runnables</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.model.Component#getLabels <em>Labels</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.model.Component#getSemaphores <em>Semaphores</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.model.Component#getOsEvents <em>Os Events</em>}</li>
* </ul>
*
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getComponent()
* @model
* @generated
*/
public interface Component extends ReferableBaseObject, ITaggable, INamespaceMember, IComponentStructureMember {
/**
* Returns the value of the '<em><b>Ports</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.app4mc.amalthea.model.ComponentPort}.
* It is bidirectional and its opposite is '{@link org.eclipse.app4mc.amalthea.model.ComponentPort#getContainingComponent <em>Containing Component</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Ports</em>' containment reference list.
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getComponent_Ports()
* @see org.eclipse.app4mc.amalthea.model.ComponentPort#getContainingComponent
* @model opposite="containingComponent" containment="true"
* @generated
*/
EList<ComponentPort> getPorts();
/**
* Returns the value of the '<em><b>Processes</b></em>' reference list.
* The list contents are of type {@link org.eclipse.app4mc.amalthea.model.AbstractProcess}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Processes</em>' reference list.
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getComponent_Processes()
* @model
* @generated
*/
EList<AbstractProcess> getProcesses();
/**
* Returns the value of the '<em><b>Runnables</b></em>' reference list.
* The list contents are of type {@link org.eclipse.app4mc.amalthea.model.Runnable}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Runnables</em>' reference list.
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getComponent_Runnables()
* @model
* @generated
*/
EList<org.eclipse.app4mc.amalthea.model.Runnable> getRunnables();
/**
* Returns the value of the '<em><b>Labels</b></em>' reference list.
* The list contents are of type {@link org.eclipse.app4mc.amalthea.model.Label}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Labels</em>' reference list.
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getComponent_Labels()
* @model
* @generated
*/
EList<Label> getLabels();
/**
* Returns the value of the '<em><b>Semaphores</b></em>' reference list.
* The list contents are of type {@link org.eclipse.app4mc.amalthea.model.Semaphore}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Semaphores</em>' reference list.
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getComponent_Semaphores()
* @model
* @generated
*/
EList<Semaphore> getSemaphores();
/**
* Returns the value of the '<em><b>Os Events</b></em>' reference list.
* The list contents are of type {@link org.eclipse.app4mc.amalthea.model.OsEvent}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Os Events</em>' reference list.
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getComponent_OsEvents()
* @model
* @generated
*/
EList<OsEvent> getOsEvents();
} // Component