projet-genie-logiciel-systeme/workspace/fr.n7.game/src-gen/fr/n7/game/Description.java
2021-12-03 08:37:31 +01:00

72 lines
1.9 KiB
Java

/**
* generated by Xtext 2.23.0
*/
package fr.n7.game;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Description</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link fr.n7.game.Description#getTexte <em>Texte</em>}</li>
* <li>{@link fr.n7.game.Description#getCondition <em>Condition</em>}</li>
* </ul>
*
* @see fr.n7.game.GamePackage#getDescription()
* @model
* @generated
*/
public interface Description extends EObject
{
/**
* Returns the value of the '<em><b>Texte</b></em>' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Texte</em>' attribute.
* @see #setTexte(String)
* @see fr.n7.game.GamePackage#getDescription_Texte()
* @model
* @generated
*/
String getTexte();
/**
* Sets the value of the '{@link fr.n7.game.Description#getTexte <em>Texte</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Texte</em>' attribute.
* @see #getTexte()
* @generated
*/
void setTexte(String value);
/**
* 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#getDescription_Condition()
* @model containment="true"
* @generated
*/
Condition getCondition();
/**
* Sets the value of the '{@link fr.n7.game.Description#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);
} // Description