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

126 lines
4 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>Jeu</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link fr.n7.gAME.Jeu#getExplorateur <em>Explorateur</em>}</li>
* <li>{@link fr.n7.gAME.Jeu#getTerritoire <em>Territoire</em>}</li>
* <li>{@link fr.n7.gAME.Jeu#getObjets <em>Objets</em>}</li>
* <li>{@link fr.n7.gAME.Jeu#getConnaissances <em>Connaissances</em>}</li>
* <li>{@link fr.n7.gAME.Jeu#getPersonnes <em>Personnes</em>}</li>
* <li>{@link fr.n7.gAME.Jeu#getTransformations <em>Transformations</em>}</li>
* </ul>
*
* @see fr.n7.gAME.GAMEPackage#getJeu()
* @model
* @generated
*/
public interface Jeu extends EObject
{
/**
* Returns the value of the '<em><b>Explorateur</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Explorateur</em>' containment reference.
* @see #setExplorateur(Explorateur)
* @see fr.n7.gAME.GAMEPackage#getJeu_Explorateur()
* @model containment="true"
* @generated
*/
Explorateur getExplorateur();
/**
* Sets the value of the '{@link fr.n7.gAME.Jeu#getExplorateur <em>Explorateur</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Explorateur</em>' containment reference.
* @see #getExplorateur()
* @generated
*/
void setExplorateur(Explorateur value);
/**
* Returns the value of the '<em><b>Territoire</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Territoire</em>' containment reference.
* @see #setTerritoire(Territoire)
* @see fr.n7.gAME.GAMEPackage#getJeu_Territoire()
* @model containment="true"
* @generated
*/
Territoire getTerritoire();
/**
* Sets the value of the '{@link fr.n7.gAME.Jeu#getTerritoire <em>Territoire</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Territoire</em>' containment reference.
* @see #getTerritoire()
* @generated
*/
void setTerritoire(Territoire value);
/**
* Returns the value of the '<em><b>Objets</b></em>' containment reference list.
* The list contents are of type {@link fr.n7.gAME.Objet}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Objets</em>' containment reference list.
* @see fr.n7.gAME.GAMEPackage#getJeu_Objets()
* @model containment="true"
* @generated
*/
EList<Objet> getObjets();
/**
* Returns the value of the '<em><b>Connaissances</b></em>' containment reference list.
* The list contents are of type {@link fr.n7.gAME.Connaissance}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Connaissances</em>' containment reference list.
* @see fr.n7.gAME.GAMEPackage#getJeu_Connaissances()
* @model containment="true"
* @generated
*/
EList<Connaissance> getConnaissances();
/**
* Returns the value of the '<em><b>Personnes</b></em>' containment reference list.
* The list contents are of type {@link fr.n7.gAME.Personne}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Personnes</em>' containment reference list.
* @see fr.n7.gAME.GAMEPackage#getJeu_Personnes()
* @model containment="true"
* @generated
*/
EList<Personne> getPersonnes();
/**
* Returns the value of the '<em><b>Transformations</b></em>' containment reference list.
* The list contents are of type {@link fr.n7.gAME.Transformation}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Transformations</em>' containment reference list.
* @see fr.n7.gAME.GAMEPackage#getJeu_Transformations()
* @model containment="true"
* @generated
*/
EList<Transformation> getTransformations();
} // Jeu