blob: 2d4e60093d70275f8d65efaf3f132ae78d029e91 [file] [log] [blame]
/*
* Copyright (c) 2011 CEA and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* CEA - initial API and implementation
* Kenn Hussey (CEA) - 351774
*
*/
package org.eclipse.uml2.uml.profile.l3;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.uml2.uml.Model;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>System Model</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* A SystemModel is a stereotyped model that contains a collection of models of the same system. A systemModel also contains all relationships and constraints between model elements contained in different models.
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.uml2.uml.profile.l3.SystemModel#getBase_Model <em>Base Model</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.uml2.uml.profile.l3.L3Package#getSystemModel()
* @model
* @generated
*/
public interface SystemModel
extends EObject {
/**
* Returns the value of the '<em><b>Base Model</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Base Model</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 Model</em>' reference.
* @see #setBase_Model(Model)
* @see org.eclipse.uml2.uml.profile.l3.L3Package#getSystemModel_Base_Model()
* @model required="true" ordered="false"
* @generated
*/
Model getBase_Model();
/**
* Sets the value of the '{@link org.eclipse.uml2.uml.profile.l3.SystemModel#getBase_Model <em>Base Model</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Base Model</em>' reference.
* @see #getBase_Model()
* @generated
*/
void setBase_Model(Model value);
} // SystemModel