/**
* generated by Xtext 2.23.0
*/
package fr.n7.xtext.gAME;
import org.eclipse.emf.ecore.EObject;
/**
*
* A representation of the model object 'Description'.
*
*
*
* The following features are supported:
*
*
* - {@link fr.n7.xtext.gAME.Description#getTexte Texte}
* - {@link fr.n7.xtext.gAME.Description#getCondition Condition}
*
*
* @see fr.n7.xtext.gAME.GAMEPackage#getDescription()
* @model
* @generated
*/
public interface Description extends EObject
{
/**
* Returns the value of the 'Texte' attribute.
*
*
* @return the value of the 'Texte' attribute.
* @see #setTexte(String)
* @see fr.n7.xtext.gAME.GAMEPackage#getDescription_Texte()
* @model
* @generated
*/
String getTexte();
/**
* Sets the value of the '{@link fr.n7.xtext.gAME.Description#getTexte Texte}' attribute.
*
*
* @param value the new value of the 'Texte' attribute.
* @see #getTexte()
* @generated
*/
void setTexte(String value);
/**
* Returns the value of the 'Condition' containment reference.
*
*
* @return the value of the 'Condition' containment reference.
* @see #setCondition(Condition)
* @see fr.n7.xtext.gAME.GAMEPackage#getDescription_Condition()
* @model containment="true"
* @generated
*/
Condition getCondition();
/**
* Sets the value of the '{@link fr.n7.xtext.gAME.Description#getCondition Condition}' containment reference.
*
*
* @param value the new value of the 'Condition' containment reference.
* @see #getCondition()
* @generated
*/
void setCondition(Condition value);
} // Description