/** * generated by Xtext 2.23.0 */ package fr.n7.gAME; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Description'. * * *

* The following features are supported: *

* * * @see fr.n7.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.gAME.GAMEPackage#getDescription_Texte() * @model * @generated */ String getTexte(); /** * Sets the value of the '{@link fr.n7.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.gAME.GAMEPackage#getDescription_Condition() * @model containment="true" * @generated */ Condition getCondition(); /** * Sets the value of the '{@link fr.n7.gAME.Description#getCondition Condition}' containment reference. * * * @param value the new value of the 'Condition' containment reference. * @see #getCondition() * @generated */ void setCondition(Condition value); } // Description