37 lines
956 B
Java
37 lines
956 B
Java
/**
|
|
*/
|
|
package fr.tpt.mem4csd.loss;
|
|
|
|
import org.eclipse.emf.common.util.EList;
|
|
|
|
/**
|
|
* <!-- begin-user-doc -->
|
|
* A representation of the model object '<em><b>Complex</b></em>'.
|
|
* <!-- end-user-doc -->
|
|
*
|
|
* <p>
|
|
* The following features are supported:
|
|
* </p>
|
|
* <ul>
|
|
* <li>{@link fr.tpt.mem4csd.loss.Complex#getPrimitives <em>Primitives</em>}</li>
|
|
* </ul>
|
|
*
|
|
* @see fr.tpt.mem4csd.loss.LossPackage#getComplex()
|
|
* @model
|
|
* @generated
|
|
*/
|
|
public interface Complex extends NamedObject {
|
|
/**
|
|
* Returns the value of the '<em><b>Primitives</b></em>' containment reference list.
|
|
* The list contents are of type {@link fr.tpt.mem4csd.loss.Primitive}.
|
|
* <!-- begin-user-doc -->
|
|
* <!-- end-user-doc -->
|
|
* @return the value of the '<em>Primitives</em>' containment reference list.
|
|
* @see fr.tpt.mem4csd.loss.LossPackage#getComplex_Primitives()
|
|
* @model containment="true"
|
|
* @generated
|
|
*/
|
|
EList<Primitive> getPrimitives();
|
|
|
|
} // Complex
|