projet-genie-logiciel-systeme/workspace/fr.n7.game/src-gen/fr/n7/gAME/Description.java

72 lines
1.9 KiB
Java
Raw Normal View History

2021-11-30 17:25:45 +00:00
/**
* generated by Xtext 2.23.0
*/
2021-12-03 08:38:29 +00:00
package fr.n7.gAME;
2021-11-30 17:25:45 +00:00
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>
2021-12-03 08:38:29 +00:00
* <li>{@link fr.n7.gAME.Description#getTexte <em>Texte</em>}</li>
* <li>{@link fr.n7.gAME.Description#getCondition <em>Condition</em>}</li>
2021-11-30 17:25:45 +00:00
* </ul>
*
2021-12-03 08:38:29 +00:00
* @see fr.n7.gAME.GAMEPackage#getDescription()
2021-11-30 17:25:45 +00:00
* @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)
2021-12-03 08:38:29 +00:00
* @see fr.n7.gAME.GAMEPackage#getDescription_Texte()
2021-11-30 17:25:45 +00:00
* @model
* @generated
*/
String getTexte();
/**
2021-12-03 08:38:29 +00:00
* Sets the value of the '{@link fr.n7.gAME.Description#getTexte <em>Texte</em>}' attribute.
2021-11-30 17:25:45 +00:00
* <!-- 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)
2021-12-03 08:38:29 +00:00
* @see fr.n7.gAME.GAMEPackage#getDescription_Condition()
2021-11-30 17:25:45 +00:00
* @model containment="true"
* @generated
*/
Condition getCondition();
/**
2021-12-03 08:38:29 +00:00
* Sets the value of the '{@link fr.n7.gAME.Description#getCondition <em>Condition</em>}' containment reference.
2021-11-30 17:25:45 +00:00
* <!-- 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