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.
62 lines
2.2 KiB
62 lines
2.2 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 |
|
*******************************************************************************/ |
|
/** |
|
*/ |
|
package com.irtsaintexupery.pseim.pseim; |
|
|
|
import com.irtsaintexupery.pseim.seim.PropertyHolder; |
|
|
|
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.pseim.IdentifiedElement#getIdentifiedAs <em>Identified As</em>}</li> |
|
* </ul> |
|
* |
|
* @see com.irtsaintexupery.pseim.pseim.PseimPackage#getIdentifiedElement() |
|
* @model interface="true" abstract="true" |
|
* @generated |
|
*/ |
|
public interface IdentifiedElement extends EObject { |
|
/** |
|
* Returns the value of the '<em><b>Identified As</b></em>' reference. |
|
* <!-- begin-user-doc --> |
|
* <p> |
|
* If the meaning of the '<em>Identified As</em>' reference isn't clear, |
|
* there really should be more of a description here... |
|
* </p> |
|
* <!-- end-user-doc --> |
|
* @return the value of the '<em>Identified As</em>' reference. |
|
* @see #setIdentifiedAs(PropertyHolder) |
|
* @see com.irtsaintexupery.pseim.pseim.PseimPackage#getIdentifiedElement_IdentifiedAs() |
|
* @model |
|
* @generated |
|
*/ |
|
PropertyHolder getIdentifiedAs(); |
|
|
|
/** |
|
* Sets the value of the '{@link com.irtsaintexupery.pseim.pseim.IdentifiedElement#getIdentifiedAs <em>Identified As</em>}' reference. |
|
* <!-- begin-user-doc --> |
|
* <!-- end-user-doc --> |
|
* @param value the new value of the '<em>Identified As</em>' reference. |
|
* @see #getIdentifiedAs() |
|
* @generated |
|
*/ |
|
void setIdentifiedAs(PropertyHolder value); |
|
|
|
} // IdentifiedElement
|
|
|