72 lines
2 KiB
Java
72 lines
2 KiB
Java
/**
|
|
* generated by Xtext 2.23.0
|
|
*/
|
|
package fr.n7.xtext.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.xtext.gAME.Description#getTexte <em>Texte</em>}</li>
|
|
* <li>{@link fr.n7.xtext.gAME.Description#getCondition <em>Condition</em>}</li>
|
|
* </ul>
|
|
*
|
|
* @see fr.n7.xtext.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.xtext.gAME.GAMEPackage#getDescription_Texte()
|
|
* @model
|
|
* @generated
|
|
*/
|
|
String getTexte();
|
|
|
|
/**
|
|
* Sets the value of the '{@link fr.n7.xtext.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.xtext.gAME.GAMEPackage#getDescription_Condition()
|
|
* @model containment="true"
|
|
* @generated
|
|
*/
|
|
Condition getCondition();
|
|
|
|
/**
|
|
* Sets the value of the '{@link fr.n7.xtext.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
|