blob: a4c956842357c5deb1f32c4f596081b6bcb08928 [file] [log] [blame]
/*******************************************************************************
* <copyright>
*
* Copyright (c) 2013, 2013 SAP AG.
* 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:
* SAP AG - initial API, implementation and documentation
*
* </copyright>
*
*******************************************************************************/
package org.eclipse.fmc.mm;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>FMC Model</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.fmc.mm.FMCModel#getName <em>Name</em>}</li>
* <li>{@link org.eclipse.fmc.mm.FMCModel#getNodes <em>Nodes</em>}</li>
* <li>{@link org.eclipse.fmc.mm.FMCModel#getConnections <em>Connections</em>}</li>
* <li>{@link org.eclipse.fmc.mm.FMCModel#getComments <em>Comments</em>}</li>
* <li>{@link org.eclipse.fmc.mm.FMCModel#getProfileId <em>Profile Id</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.fmc.mm.FmcPackage#getFMCModel()
* @model
* @generated
*/
public interface FMCModel extends EObject {
/**
* Returns the value of the '<em><b>Name</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Name</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Name</em>' attribute.
* @see #setName(String)
* @see org.eclipse.fmc.mm.FmcPackage#getFMCModel_Name()
* @model
* @generated
*/
String getName();
/**
* Sets the value of the '{@link org.eclipse.fmc.mm.FMCModel#getName <em>Name</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Name</em>' attribute.
* @see #getName()
* @generated
*/
void setName(String value);
/**
* Returns the value of the '<em><b>Nodes</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.fmc.mm.FMCNode}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Nodes</em>' containment reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Nodes</em>' containment reference list.
* @see org.eclipse.fmc.mm.FmcPackage#getFMCModel_Nodes()
* @model containment="true"
* @generated
*/
EList<FMCNode> getNodes();
/**
* Returns the value of the '<em><b>Connections</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.fmc.mm.FMCConnection}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Connections</em>' containment reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Connections</em>' containment reference list.
* @see org.eclipse.fmc.mm.FmcPackage#getFMCModel_Connections()
* @model containment="true"
* @generated
*/
EList<FMCConnection> getConnections();
/**
* Returns the value of the '<em><b>Comments</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.fmc.mm.Comment}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Comments</em>' containment reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Comments</em>' containment reference list.
* @see org.eclipse.fmc.mm.FmcPackage#getFMCModel_Comments()
* @model containment="true"
* @generated
*/
EList<Comment> getComments();
/**
* Returns the value of the '<em><b>Profile Id</b></em>' attribute list.
* The list contents are of type {@link java.lang.Object}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Profile Id</em>' attribute list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Profile Id</em>' attribute list.
* @see org.eclipse.fmc.mm.FmcPackage#getFMCModel_ProfileId()
* @model
* @generated
*/
EList<Object> getProfileId();
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @model kind="operation"
* @generated
*/
EList<FMCNode> getAllFMCNodes();
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @model kind="operation"
* @generated
*/
EList<FMCConnection> getAllFMCConnections();
} // FMCModel