You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
2.3 KiB
65 lines
2.3 KiB
/******************************************************************************* |
|
* 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
|
|
|