projet-genie-logiciel-systeme/workspace/fr.n7.game/src-gen/fr/n7/gAME/Transformation.java
Laurent Fainsin dbbc56c241 save: tmp
2021-12-03 09:38:29 +01:00

77 lines
2.2 KiB
Java

/**
* generated by Xtext 2.23.0
*/
package fr.n7.gAME;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Transformation</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link fr.n7.gAME.Transformation#getCondition <em>Condition</em>}</li>
* <li>{@link fr.n7.gAME.Transformation#getObjetsIn <em>Objets In</em>}</li>
* <li>{@link fr.n7.gAME.Transformation#getObjetsOut <em>Objets Out</em>}</li>
* </ul>
*
* @see fr.n7.gAME.GAMEPackage#getTransformation()
* @model
* @generated
*/
public interface Transformation extends EObject
{
/**
* Returns the value of the '<em><b>Condition</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Condition</em>' containment reference.
* @see #setCondition(Condition)
* @see fr.n7.gAME.GAMEPackage#getTransformation_Condition()
* @model containment="true"
* @generated
*/
Condition getCondition();
/**
* Sets the value of the '{@link fr.n7.gAME.Transformation#getCondition <em>Condition</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Condition</em>' containment reference.
* @see #getCondition()
* @generated
*/
void setCondition(Condition value);
/**
* Returns the value of the '<em><b>Objets In</b></em>' attribute list.
* The list contents are of type {@link java.lang.String}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Objets In</em>' attribute list.
* @see fr.n7.gAME.GAMEPackage#getTransformation_ObjetsIn()
* @model unique="false"
* @generated
*/
EList<String> getObjetsIn();
/**
* Returns the value of the '<em><b>Objets Out</b></em>' attribute list.
* The list contents are of type {@link java.lang.String}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Objets Out</em>' attribute list.
* @see fr.n7.gAME.GAMEPackage#getTransformation_ObjetsOut()
* @model unique="false"
* @generated
*/
EList<String> getObjetsOut();
} // Transformation