blob: fd9080d2437b4ad126e4aece43f91d7b89a4e257 [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;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>FMC Node</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.fmc.mm.FMCNode#getName <em>Name</em>}</li>
* <li>{@link org.eclipse.fmc.mm.FMCNode#getContains <em>Contains</em>}</li>
* <li>{@link org.eclipse.fmc.mm.FMCNode#getContainer <em>Container</em>}</li>
* <li>{@link org.eclipse.fmc.mm.FMCNode#getMultiplicity <em>Multiplicity</em>}</li>
* <li>{@link org.eclipse.fmc.mm.FMCNode#getNextElement <em>Next Element</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.fmc.mm.FmcPackage#getFMCNode()
* @model abstract="true"
* @generated
*/
public interface FMCNode extends FMCElement {
/**
* 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#getFMCNode_Name()
* @model
* @generated
*/
String getName();
/**
* Sets the value of the '{@link org.eclipse.fmc.mm.FMCNode#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>Contains</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.fmc.mm.FMCNode}.
* It is bidirectional and its opposite is '{@link org.eclipse.fmc.mm.FMCNode#getContainer <em>Container</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Contains</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>Contains</em>' containment reference list.
* @see org.eclipse.fmc.mm.FmcPackage#getFMCNode_Contains()
* @see org.eclipse.fmc.mm.FMCNode#getContainer
* @model opposite="container" containment="true"
* @generated
*/
EList<FMCNode> getContains();
/**
* Returns the value of the '<em><b>Container</b></em>' container reference.
* It is bidirectional and its opposite is '{@link org.eclipse.fmc.mm.FMCNode#getContains <em>Contains</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Container</em>' container reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Container</em>' container reference.
* @see #setContainer(FMCNode)
* @see org.eclipse.fmc.mm.FmcPackage#getFMCNode_Container()
* @see org.eclipse.fmc.mm.FMCNode#getContains
* @model opposite="contains" transient="false"
* @generated
*/
FMCNode getContainer();
/**
* Sets the value of the '{@link org.eclipse.fmc.mm.FMCNode#getContainer <em>Container</em>}' container reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Container</em>' container reference.
* @see #getContainer()
* @generated
*/
void setContainer(FMCNode value);
/**
* Returns the value of the '<em><b>Multiplicity</b></em>' attribute.
* The literals are from the enumeration {@link org.eclipse.fmc.mm.MultiplicityType}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Multiplicity</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Multiplicity</em>' attribute.
* @see org.eclipse.fmc.mm.MultiplicityType
* @see #setMultiplicity(MultiplicityType)
* @see org.eclipse.fmc.mm.FmcPackage#getFMCNode_Multiplicity()
* @model
* @generated
*/
MultiplicityType getMultiplicity();
/**
* Sets the value of the '{@link org.eclipse.fmc.mm.FMCNode#getMultiplicity <em>Multiplicity</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Multiplicity</em>' attribute.
* @see org.eclipse.fmc.mm.MultiplicityType
* @see #getMultiplicity()
* @generated
*/
void setMultiplicity(MultiplicityType value);
/**
* Returns the value of the '<em><b>Next Element</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Next Element</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Next Element</em>' reference.
* @see #setNextElement(FMCNode)
* @see org.eclipse.fmc.mm.FmcPackage#getFMCNode_NextElement()
* @model
* @generated
*/
FMCNode getNextElement();
/**
* Sets the value of the '{@link org.eclipse.fmc.mm.FMCNode#getNextElement <em>Next Element</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Next Element</em>' reference.
* @see #getNextElement()
* @generated
*/
void setNextElement(FMCNode value);
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @model kind="operation" ordered="false"
* @generated NOT
*/
EList<? extends FMCConnection> getAllConnections();
} // FMCNode