mirror of
http://172.16.200.102/MOISE/Pattern-Instanciation-On-System-Engineering-Model.git
synced 2025-11-26 03:47:59 +01:00
53 lines
1.8 KiB
Java
53 lines
1.8 KiB
Java
/*******************************************************************************
|
|
* Copyright (c) 2018 IRT AESE (IRT Saint Exupéry).
|
|
* All rights reserved. This program and the accompanying materials
|
|
* are made available under the terms of the Eclipse Public License v2.0
|
|
* which accompanies this distribution, and is available at
|
|
* https://www.eclipse.org/legal/epl-2.0
|
|
*
|
|
* Contributors:
|
|
* Arnaud Dieumegard (IRT Saint Exupéry) - initial API and implementation
|
|
*******************************************************************************/
|
|
/**
|
|
*/
|
|
package com.irtsaintexupery.pseim.pseim;
|
|
|
|
import com.irtsaintexupery.pseim.seim.PropertyHolder;
|
|
|
|
import org.eclipse.emf.common.util.EList;
|
|
|
|
/**
|
|
* <!-- begin-user-doc -->
|
|
* A representation of the model object '<em><b>Cardinality Element</b></em>'.
|
|
* <!-- end-user-doc -->
|
|
*
|
|
* <p>
|
|
* The following features are supported:
|
|
* </p>
|
|
* <ul>
|
|
* <li>{@link com.irtsaintexupery.pseim.pseim.CardinalityElement#getCalculatedVia <em>Calculated Via</em>}</li>
|
|
* </ul>
|
|
*
|
|
* @see com.irtsaintexupery.pseim.pseim.PseimPackage#getCardinalityElement()
|
|
* @model
|
|
* @generated
|
|
*/
|
|
public interface CardinalityElement extends PropertyHolder {
|
|
/**
|
|
* Returns the value of the '<em><b>Calculated Via</b></em>' reference list.
|
|
* The list contents are of type {@link com.irtsaintexupery.pseim.seim.PropertyHolder}.
|
|
* <!-- begin-user-doc -->
|
|
* <p>
|
|
* If the meaning of the '<em>Calculated Via</em>' reference list isn't clear,
|
|
* there really should be more of a description here...
|
|
* </p>
|
|
* <!-- end-user-doc -->
|
|
* @return the value of the '<em>Calculated Via</em>' reference list.
|
|
* @see com.irtsaintexupery.pseim.pseim.PseimPackage#getCardinalityElement_CalculatedVia()
|
|
* @model
|
|
* @generated
|
|
*/
|
|
EList<PropertyHolder> getCalculatedVia();
|
|
|
|
} // CardinalityElement
|