blob: b22bfa63665379b3b9a0d9822cf264b97ae77573 [file] [log] [blame]
/**
* *******************************************************************************
* Copyright (c) 2008 Castor Technologies Inc.
* 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:
* Alain Picard (Castor Technologies Inc) - initial API and implementation
* *******************************************************************************
*
* $Id$
*/
package org.eclipse.gmt.modisco.omg.smm;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Element</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.gmt.modisco.omg.smm.SmmElement#getModel <em>Model</em>}</li>
* <li>{@link org.eclipse.gmt.modisco.omg.smm.SmmElement#getAttribute <em>Attribute</em>}</li>
* <li>{@link org.eclipse.gmt.modisco.omg.smm.SmmElement#getAnnotation <em>Annotation</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.gmt.modisco.omg.smm.SmmPackage#getSmmElement()
* @model abstract="true"
* @generated
*/
public interface SmmElement extends EObject {
/**
* Returns the value of the '<em><b>Model</b></em>' container reference.
* It is bidirectional and its opposite is '{@link org.eclipse.gmt.modisco.omg.smm.SmmModel#getModelElement <em>Model Element</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Model</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>Model</em>' container reference.
* @see #setModel(SmmModel)
* @see org.eclipse.gmt.modisco.omg.smm.SmmPackage#getSmmElement_Model()
* @see org.eclipse.gmt.modisco.omg.smm.SmmModel#getModelElement
* @model opposite="modelElement" transient="false"
* @generated
*/
SmmModel getModel();
/**
* Sets the value of the '{@link org.eclipse.gmt.modisco.omg.smm.SmmElement#getModel <em>Model</em>}' container reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Model</em>' container reference.
* @see #getModel()
* @generated
*/
void setModel(SmmModel value);
/**
* Returns the value of the '<em><b>Attribute</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.gmt.modisco.omg.smm.Attribute}.
* It is bidirectional and its opposite is '{@link org.eclipse.gmt.modisco.omg.smm.Attribute#getOwner <em>Owner</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Attribute</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>Attribute</em>' containment reference list.
* @see org.eclipse.gmt.modisco.omg.smm.SmmPackage#getSmmElement_Attribute()
* @see org.eclipse.gmt.modisco.omg.smm.Attribute#getOwner
* @model opposite="owner" containment="true"
* @generated
*/
EList<Attribute> getAttribute();
/**
* Returns the value of the '<em><b>Annotation</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.gmt.modisco.omg.smm.Annotation}.
* It is bidirectional and its opposite is '{@link org.eclipse.gmt.modisco.omg.smm.Annotation#getOwner <em>Owner</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Annotation</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>Annotation</em>' containment reference list.
* @see org.eclipse.gmt.modisco.omg.smm.SmmPackage#getSmmElement_Annotation()
* @see org.eclipse.gmt.modisco.omg.smm.Annotation#getOwner
* @model opposite="owner" containment="true"
* @generated
*/
EList<Annotation> getAnnotation();
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @model kind="operation"
* @generated
*/
EList<SmmRelationship> getInbound();
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @model kind="operation"
* @generated
*/
EList<SmmRelationship> getOutbound();
} // SmmElement