blob: ce8d9a857807e88e2a1f4ae9ddc0246b0b876d35 [file] [log] [blame]
/*
* Copyright (c) 2014, 2018 CEA and others.
* 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
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Kenn Hussey (CEA) - initial API and implementation
* Kenn Hussey (CEA) - 451350
* Kenn Hussey - 535301
*
*/
package org.eclipse.uml2.uml.profile.standard;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.uml2.uml.Artifact;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>File</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* A physical file in the context of the system developed.
* <p>From package StandardProfile (URI {@literal http://www.omg.org/spec/UML/20131001/StandardProfile}).</p>
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.uml2.uml.profile.standard.File#getBase_Artifact <em>Base Artifact</em>}</li>
* </ul>
*
* @see org.eclipse.uml2.uml.profile.standard.StandardPackage#getFile()
* @model abstract="true"
* @generated
*/
public interface File
extends EObject {
/**
* Returns the value of the '<em><b>Base Artifact</b></em>' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* <p>From package StandardProfile (URI {@literal http://www.omg.org/spec/UML/20131001/StandardProfile}).</p>
* <!-- end-model-doc -->
* @return the value of the '<em>Base Artifact</em>' reference.
* @see #setBase_Artifact(Artifact)
* @see org.eclipse.uml2.uml.profile.standard.StandardPackage#getFile_Base_Artifact()
* @model required="true" ordered="false"
* @generated
*/
Artifact getBase_Artifact();
/**
* Sets the value of the '{@link org.eclipse.uml2.uml.profile.standard.File#getBase_Artifact <em>Base Artifact</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Base Artifact</em>' reference.
* @see #getBase_Artifact()
* @generated
*/
void setBase_Artifact(Artifact value);
} // File