blob: f45ffe7d67afe00361224b27cc1e8b52e7433899 [file] [log] [blame]
/**
* Copyright (c) 2022 CEA LIST and others.
*
* 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
* http://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* CEA LIST - Initial API and implementation
*/
package org.eclipse.papyrus.aas;
import org.eclipse.uml2.uml.Property;
/**
* <!-- 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>
* <li>{@link org.eclipse.papyrus.aas.Entity#getBase_Property <em>Base Property</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);
/**
* Returns the value of the '<em><b>Base Property</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Base Property</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Base Property</em>' reference.
* @see #setBase_Property(Property)
* @see org.eclipse.papyrus.aas.AASPackage#getEntity_Base_Property()
* @model ordered="false"
* @generated
*/
Property getBase_Property();
/**
* Sets the value of the '{@link org.eclipse.papyrus.aas.Entity#getBase_Property <em>Base Property</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Base Property</em>' reference.
* @see #getBase_Property()
* @generated
*/
void setBase_Property(Property value);
} // Entity