47 lines
1.2 KiB
Java
47 lines
1.2 KiB
Java
/**
|
|
*/
|
|
package fr.tpt.mem4csd.loss;
|
|
|
|
import org.eclipse.emf.ecore.EObject;
|
|
|
|
/**
|
|
* <!-- begin-user-doc -->
|
|
* A representation of the model object '<em><b>Primitive</b></em>'.
|
|
* <!-- end-user-doc -->
|
|
*
|
|
* <p>
|
|
* The following features are supported:
|
|
* </p>
|
|
* <ul>
|
|
* <li>{@link fr.tpt.mem4csd.loss.Primitive#getType <em>Type</em>}</li>
|
|
* </ul>
|
|
*
|
|
* @see fr.tpt.mem4csd.loss.LossPackage#getPrimitive()
|
|
* @model
|
|
* @generated
|
|
*/
|
|
public interface Primitive extends NamedObject {
|
|
/**
|
|
* Returns the value of the '<em><b>Type</b></em>' containment reference.
|
|
* <!-- begin-user-doc -->
|
|
* <!-- end-user-doc -->
|
|
* @return the value of the '<em>Type</em>' containment reference.
|
|
* @see #setType(EObject)
|
|
* @see fr.tpt.mem4csd.loss.LossPackage#getPrimitive_Type()
|
|
* @model containment="true" required="true"
|
|
* @generated
|
|
*/
|
|
EObject getType();
|
|
|
|
/**
|
|
* Sets the value of the '{@link fr.tpt.mem4csd.loss.Primitive#getType <em>Type</em>}' containment reference.
|
|
* <!-- begin-user-doc -->
|
|
* <!-- end-user-doc -->
|
|
* @param value the new value of the '<em>Type</em>' containment reference.
|
|
* @see #getType()
|
|
* @generated
|
|
*/
|
|
void setType(EObject value);
|
|
|
|
} // Primitive
|