projet-genie-logiciel-systeme/workspace/game/src-gen/xtext/game/Personne.java
2021-11-30 18:25:45 +01:00

87 lines
2.6 KiB
Java

/**
* generated by Xtext 2.23.0
*/
package xtext.game;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Personne</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link xtext.game.Personne#getVisible <em>Visible</em>}</li>
* <li>{@link xtext.game.Personne#getObligatoire <em>Obligatoire</em>}</li>
* <li>{@link xtext.game.Personne#getInterractions <em>Interractions</em>}</li>
* </ul>
*
* @see xtext.game.GamePackage#getPersonne()
* @model
* @generated
*/
public interface Personne extends EObject
{
/**
* Returns the value of the '<em><b>Visible</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Visible</em>' containment reference.
* @see #setVisible(Condition)
* @see xtext.game.GamePackage#getPersonne_Visible()
* @model containment="true"
* @generated
*/
Condition getVisible();
/**
* Sets the value of the '{@link xtext.game.Personne#getVisible <em>Visible</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Visible</em>' containment reference.
* @see #getVisible()
* @generated
*/
void setVisible(Condition value);
/**
* Returns the value of the '<em><b>Obligatoire</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Obligatoire</em>' containment reference.
* @see #setObligatoire(Condition)
* @see xtext.game.GamePackage#getPersonne_Obligatoire()
* @model containment="true"
* @generated
*/
Condition getObligatoire();
/**
* Sets the value of the '{@link xtext.game.Personne#getObligatoire <em>Obligatoire</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Obligatoire</em>' containment reference.
* @see #getObligatoire()
* @generated
*/
void setObligatoire(Condition value);
/**
* Returns the value of the '<em><b>Interractions</b></em>' containment reference list.
* The list contents are of type {@link xtext.game.Interraction}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Interractions</em>' containment reference list.
* @see xtext.game.GamePackage#getPersonne_Interractions()
* @model containment="true"
* @generated
*/
EList<Interraction> getInterractions();
} // Personne