mirror of
http://172.16.200.102/MOISE/Pattern-Instanciation-On-System-Engineering-Model.git
synced 2025-12-24 10:03:57 +01:00
66 lines
2.3 KiB
Java
66 lines
2.3 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
|
|
* Pierre Virelizier (IRT Saint Exupéry)
|
|
* Julien Baclet (IRT Saint Exupéry)
|
|
* Pierre Gaufillet (IRT Saint Exupéry)
|
|
*******************************************************************************/
|
|
/**
|
|
*/
|
|
package com.irtsaintexupery.pseim.seim;
|
|
|
|
import org.eclipse.emf.ecore.EObject;
|
|
|
|
/**
|
|
* <!-- begin-user-doc -->
|
|
* A representation of the model object '<em><b>Identified Element</b></em>'.
|
|
* <!-- end-user-doc -->
|
|
*
|
|
* <p>
|
|
* The following features are supported:
|
|
* </p>
|
|
* <ul>
|
|
* <li>{@link com.irtsaintexupery.pseim.seim.IdentifiedElement#getUid <em>Uid</em>}</li>
|
|
* </ul>
|
|
*
|
|
* @see com.irtsaintexupery.pseim.seim.SeimPackage#getIdentifiedElement()
|
|
* @model interface="true" abstract="true"
|
|
* annotation="http://www.eclipse.org/emf/2002/Ecore constraints='uidNotEmpty'"
|
|
* annotation="http://www.eclipse.org/emf/2002/Ecore/OCL/Pivot uidNotEmpty='uid <> \'\''"
|
|
* @generated
|
|
*/
|
|
public interface IdentifiedElement extends EObject {
|
|
/**
|
|
* Returns the value of the '<em><b>Uid</b></em>' attribute.
|
|
* <!-- begin-user-doc -->
|
|
* <p>
|
|
* If the meaning of the '<em>Uid</em>' attribute isn't clear,
|
|
* there really should be more of a description here...
|
|
* </p>
|
|
* <!-- end-user-doc -->
|
|
* @return the value of the '<em>Uid</em>' attribute.
|
|
* @see #isSetUid()
|
|
* @see com.irtsaintexupery.pseim.seim.SeimPackage#getIdentifiedElement_Uid()
|
|
* @model unsettable="true" id="true" changeable="false"
|
|
* @generated
|
|
*/
|
|
String getUid();
|
|
|
|
/**
|
|
* Returns whether the value of the '{@link com.irtsaintexupery.pseim.seim.IdentifiedElement#getUid <em>Uid</em>}' attribute is set.
|
|
* <!-- begin-user-doc -->
|
|
* <!-- end-user-doc -->
|
|
* @return whether the value of the '<em>Uid</em>' attribute is set.
|
|
* @see #getUid()
|
|
* @generated
|
|
*/
|
|
boolean isSetUid();
|
|
|
|
} // IdentifiedElement
|