blob: a7adf30d9e02bb943fb4b7947e85d28fdd56f57c [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;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>ISystem</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.app4mc.amalthea.model.ISystem#getComponentInstances <em>Component Instances</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.model.ISystem#getConnectors <em>Connectors</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.model.ISystem#getGroundedPorts <em>Grounded Ports</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.model.ISystem#getInnerPorts <em>Inner Ports</em>}</li>
* </ul>
*
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getISystem()
* @model interface="true" abstract="true"
* @generated
*/
public interface ISystem extends EObject {
/**
* Returns the value of the '<em><b>Component Instances</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.app4mc.amalthea.model.ComponentInstance}.
* It is bidirectional and its opposite is '{@link org.eclipse.app4mc.amalthea.model.ComponentInstance#getContainingSystem <em>Containing System</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Component Instances</em>' containment reference list.
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getISystem_ComponentInstances()
* @see org.eclipse.app4mc.amalthea.model.ComponentInstance#getContainingSystem
* @model opposite="containingSystem" containment="true"
* @generated
*/
EList<ComponentInstance> getComponentInstances();
/**
* Returns the value of the '<em><b>Connectors</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.app4mc.amalthea.model.Connector}.
* It is bidirectional and its opposite is '{@link org.eclipse.app4mc.amalthea.model.Connector#getContainingSystem <em>Containing System</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Connectors</em>' containment reference list.
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getISystem_Connectors()
* @see org.eclipse.app4mc.amalthea.model.Connector#getContainingSystem
* @model opposite="containingSystem" containment="true"
* @generated
*/
EList<Connector> getConnectors();
/**
* Returns the value of the '<em><b>Grounded Ports</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.app4mc.amalthea.model.QualifiedPort}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Grounded Ports</em>' containment reference list.
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getISystem_GroundedPorts()
* @model containment="true"
* @generated
*/
EList<QualifiedPort> getGroundedPorts();
/**
* Returns the value of the '<em><b>Inner Ports</b></em>' reference list.
* The list contents are of type {@link org.eclipse.app4mc.amalthea.model.QualifiedPort}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Inner Ports</em>' reference list.
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getISystem_InnerPorts()
* @model transient="true" changeable="false" volatile="true" derived="true"
* @generated
*/
EList<QualifiedPort> getInnerPorts();
} // ISystem