projet-genie-logiciel-systeme/workspace/fr.n7.game/src-gen/xtext/game/Transformation.java
2021-12-03 08:36:23 +01:00

77 lines
2.2 KiB
Java

/**
* generated by Xtext 2.23.0
*/
package xtext.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 xtext.game.Transformation#getCondition <em>Condition</em>}</li>
* <li>{@link xtext.game.Transformation#getObjetsIn <em>Objets In</em>}</li>
* <li>{@link xtext.game.Transformation#getObjetsOut <em>Objets Out</em>}</li>
* </ul>
*
* @see xtext.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 xtext.game.GamePackage#getTransformation_Condition()
* @model containment="true"
* @generated
*/
Condition getCondition();
/**
* Sets the value of the '{@link xtext.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 xtext.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 xtext.game.GamePackage#getTransformation_ObjetsOut()
* @model unique="false"
* @generated
*/
EList<String> getObjetsOut();
} // Transformation