blob: 4cb9161572598d3981c4d9391ba4d92eb02ba292 [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>Identifiable</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.papyrus.aas.Identifiable#getAdministration <em>Administration</em>}</li>
* <li>{@link org.eclipse.papyrus.aas.Identifiable#getIdentification <em>Identification</em>}</li>
* </ul>
*
* @see org.eclipse.papyrus.aas.AASPackage#getIdentifiable()
* @model abstract="true"
* @generated
*/
public interface Identifiable extends Refereable {
/**
* Returns the value of the '<em><b>Administration</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Administration</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>Administration</em>' containment reference.
* @see #setAdministration(AdministrativeInformation)
* @see org.eclipse.papyrus.aas.AASPackage#getIdentifiable_Administration()
* @model containment="true" ordered="false"
* @generated
*/
AdministrativeInformation getAdministration();
/**
* Sets the value of the '{@link org.eclipse.papyrus.aas.Identifiable#getAdministration <em>Administration</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @param value
* the new value of the '<em>Administration</em>' containment reference.
* @see #getAdministration()
* @generated
*/
void setAdministration(AdministrativeInformation value);
/**
* Returns the value of the '<em><b>Identification</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Identification</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>Identification</em>' containment reference.
* @see #setIdentification(Identifier)
* @see org.eclipse.papyrus.aas.AASPackage#getIdentifiable_Identification()
* @model containment="true" required="true" ordered="false"
* @generated
*/
Identifier getIdentification();
/**
* Sets the value of the '{@link org.eclipse.papyrus.aas.Identifiable#getIdentification <em>Identification</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @param value
* the new value of the '<em>Identification</em>' containment reference.
* @see #getIdentification()
* @generated
*/
void setIdentification(Identifier value);
} // Identifiable