mirror of
http://172.16.200.102/MOISE/Pattern-Instanciation-On-System-Engineering-Model.git
synced 2025-12-18 02:43:57 +01:00
80 lines
2.6 KiB
Java
80 lines
2.6 KiB
Java
|
|
/**
|
||
|
|
*/
|
||
|
|
package com.irtsaintexupery.pseim.mapping;
|
||
|
|
|
||
|
|
import com.irtsaintexupery.pseim.pseim.CardinalityElement;
|
||
|
|
|
||
|
|
import org.eclipse.emf.ecore.EObject;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* <!-- begin-user-doc -->
|
||
|
|
* A representation of the model object '<em><b>Cardinality Value Setting</b></em>'.
|
||
|
|
* <!-- end-user-doc -->
|
||
|
|
*
|
||
|
|
* <p>
|
||
|
|
* The following features are supported:
|
||
|
|
* </p>
|
||
|
|
* <ul>
|
||
|
|
* <li>{@link com.irtsaintexupery.pseim.mapping.CardinalityValueSetting#getCardinalityElement <em>Cardinality Element</em>}</li>
|
||
|
|
* <li>{@link com.irtsaintexupery.pseim.mapping.CardinalityValueSetting#getValue <em>Value</em>}</li>
|
||
|
|
* </ul>
|
||
|
|
*
|
||
|
|
* @see com.irtsaintexupery.pseim.mapping.MappingPackage#getCardinalityValueSetting()
|
||
|
|
* @model
|
||
|
|
* @generated
|
||
|
|
*/
|
||
|
|
public interface CardinalityValueSetting extends EObject {
|
||
|
|
/**
|
||
|
|
* Returns the value of the '<em><b>Cardinality Element</b></em>' reference.
|
||
|
|
* <!-- begin-user-doc -->
|
||
|
|
* <p>
|
||
|
|
* If the meaning of the '<em>Cardinality Element</em>' reference isn't clear,
|
||
|
|
* there really should be more of a description here...
|
||
|
|
* </p>
|
||
|
|
* <!-- end-user-doc -->
|
||
|
|
* @return the value of the '<em>Cardinality Element</em>' reference.
|
||
|
|
* @see #setCardinalityElement(CardinalityElement)
|
||
|
|
* @see com.irtsaintexupery.pseim.mapping.MappingPackage#getCardinalityValueSetting_CardinalityElement()
|
||
|
|
* @model required="true"
|
||
|
|
* @generated
|
||
|
|
*/
|
||
|
|
CardinalityElement getCardinalityElement();
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Sets the value of the '{@link com.irtsaintexupery.pseim.mapping.CardinalityValueSetting#getCardinalityElement <em>Cardinality Element</em>}' reference.
|
||
|
|
* <!-- begin-user-doc -->
|
||
|
|
* <!-- end-user-doc -->
|
||
|
|
* @param value the new value of the '<em>Cardinality Element</em>' reference.
|
||
|
|
* @see #getCardinalityElement()
|
||
|
|
* @generated
|
||
|
|
*/
|
||
|
|
void setCardinalityElement(CardinalityElement value);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Returns the value of the '<em><b>Value</b></em>' attribute.
|
||
|
|
* <!-- begin-user-doc -->
|
||
|
|
* <p>
|
||
|
|
* If the meaning of the '<em>Value</em>' attribute isn't clear,
|
||
|
|
* there really should be more of a description here...
|
||
|
|
* </p>
|
||
|
|
* <!-- end-user-doc -->
|
||
|
|
* @return the value of the '<em>Value</em>' attribute.
|
||
|
|
* @see #setValue(int)
|
||
|
|
* @see com.irtsaintexupery.pseim.mapping.MappingPackage#getCardinalityValueSetting_Value()
|
||
|
|
* @model required="true"
|
||
|
|
* @generated
|
||
|
|
*/
|
||
|
|
int getValue();
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Sets the value of the '{@link com.irtsaintexupery.pseim.mapping.CardinalityValueSetting#getValue <em>Value</em>}' attribute.
|
||
|
|
* <!-- begin-user-doc -->
|
||
|
|
* <!-- end-user-doc -->
|
||
|
|
* @param value the new value of the '<em>Value</em>' attribute.
|
||
|
|
* @see #getValue()
|
||
|
|
* @generated
|
||
|
|
*/
|
||
|
|
void setValue(int value);
|
||
|
|
|
||
|
|
} // CardinalityValueSetting
|