projet-genie-logiciel-systeme/workspace/game/src-gen/xtext/game/Transformation.java

77 lines
2.3 KiB
Java
Raw Normal View History

2021-11-30 17:25:45 +00:00
/**
* 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#getObjetSource <em>Objet Source</em>}</li>
* <li>{@link xtext.game.Transformation#getObjetsResultats <em>Objets Resultats</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>Objet Source</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>Objet Source</em>' attribute list.
* @see xtext.game.GamePackage#getTransformation_ObjetSource()
* @model unique="false"
* @generated
*/
EList<String> getObjetSource();
/**
* Returns the value of the '<em><b>Objets Resultats</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 Resultats</em>' attribute list.
* @see xtext.game.GamePackage#getTransformation_ObjetsResultats()
* @model unique="false"
* @generated
*/
EList<String> getObjetsResultats();
} // Transformation