projet-genie-logiciel-systeme/workspace/fr.n7.game/src-gen/xtext/game/Territoire.java

54 lines
1.4 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>Territoire</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link xtext.game.Territoire#getLieux <em>Lieux</em>}</li>
* <li>{@link xtext.game.Territoire#getChemins <em>Chemins</em>}</li>
* </ul>
*
* @see xtext.game.GamePackage#getTerritoire()
* @model
* @generated
*/
public interface Territoire extends EObject
{
/**
* Returns the value of the '<em><b>Lieux</b></em>' containment reference list.
* The list contents are of type {@link xtext.game.Lieu}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Lieux</em>' containment reference list.
* @see xtext.game.GamePackage#getTerritoire_Lieux()
* @model containment="true"
* @generated
*/
EList<Lieu> getLieux();
/**
* Returns the value of the '<em><b>Chemins</b></em>' containment reference list.
* The list contents are of type {@link xtext.game.Chemin}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Chemins</em>' containment reference list.
* @see xtext.game.GamePackage#getTerritoire_Chemins()
* @model containment="true"
* @generated
*/
EList<Chemin> getChemins();
} // Territoire