blob: 688bf99d2f44c7943d0a4f13ae85842cac41f9e2 [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2020 CEA LIST.
*
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Saadia Dhouib (CEA LIST) saadia.dhouib@cea.fr - Initial API and implementation
*
*****************************************************************************/
package org.eclipse.papyrus.aas;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Entity</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.papyrus.aas.Entity#getEntityType <em>Entity Type</em>}</li>
* <li>{@link org.eclipse.papyrus.aas.Entity#getAsset <em>Asset</em>}</li>
* </ul>
*
* @see org.eclipse.papyrus.aas.AASPackage#getEntity()
* @model
* @generated
*/
public interface Entity extends SubmodelElement {
/**
* Returns the value of the '<em><b>Entity Type</b></em>' attribute.
* The literals are from the enumeration {@link org.eclipse.papyrus.aas.EntityType}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Entity Type</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
*
* @return the value of the '<em>Entity Type</em>' attribute.
* @see org.eclipse.papyrus.aas.EntityType
* @see #setEntityType(EntityType)
* @see org.eclipse.papyrus.aas.AASPackage#getEntity_EntityType()
* @model required="true" ordered="false"
* @generated
*/
EntityType getEntityType();
/**
* Sets the value of the '{@link org.eclipse.papyrus.aas.Entity#getEntityType <em>Entity Type</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @param value
* the new value of the '<em>Entity Type</em>' attribute.
* @see org.eclipse.papyrus.aas.EntityType
* @see #getEntityType()
* @generated
*/
void setEntityType(EntityType value);
/**
* Returns the value of the '<em><b>Asset</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Asset</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
*
* @return the value of the '<em>Asset</em>' reference.
* @see #setAsset(Asset)
* @see org.eclipse.papyrus.aas.AASPackage#getEntity_Asset()
* @model required="true" ordered="false"
* @generated
*/
Asset getAsset();
/**
* Sets the value of the '{@link org.eclipse.papyrus.aas.Entity#getAsset <em>Asset</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @param value
* the new value of the '<em>Asset</em>' reference.
* @see #getAsset()
* @generated
*/
void setAsset(Asset value);
} // Entity