blob: c39a85f8c75edeae2f83acbb7c7bec133065f86c [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;
import org.eclipse.emf.common.util.EList;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Asset</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* There is no asset in Basyx
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.papyrus.aas.Asset#getKind <em>Kind</em>}</li>
* <li>{@link org.eclipse.papyrus.aas.Asset#getEndpoint <em>Endpoint</em>}</li>
* </ul>
*
* @see org.eclipse.papyrus.aas.AASPackage#getAsset()
* @model
* @generated
*/
public interface Asset extends Identifiable {
/**
* Returns the value of the '<em><b>Kind</b></em>' attribute.
* The literals are from the enumeration {@link org.eclipse.papyrus.aas.AssetKind}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Kind</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
*
* @return the value of the '<em>Kind</em>' attribute.
* @see org.eclipse.papyrus.aas.AssetKind
* @see #setKind(AssetKind)
* @see org.eclipse.papyrus.aas.AASPackage#getAsset_Kind()
* @model required="true" ordered="false"
* @generated
*/
AssetKind getKind();
/**
* Sets the value of the '{@link org.eclipse.papyrus.aas.Asset#getKind <em>Kind</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @param value
* the new value of the '<em>Kind</em>' attribute.
* @see org.eclipse.papyrus.aas.AssetKind
* @see #getKind()
* @generated
*/
void setKind(AssetKind value);
/**
* Returns the value of the '<em><b>Endpoint</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.papyrus.aas.Endpoint}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Endpoint</em>' containment reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
*
* @return the value of the '<em>Endpoint</em>' containment reference list.
* @see org.eclipse.papyrus.aas.AASPackage#getAsset_Endpoint()
* @model containment="true" ordered="false"
* @generated
*/
EList<Endpoint> getEndpoint();
} // Asset