/**
* generated by Xtext 2.23.0
*/
package fr.n7.game;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EObject;
/**
*
* A representation of the model object 'Connaissance'.
*
*
*
* The following features are supported:
*
*
* - {@link fr.n7.game.Connaissance#getNom Nom}
* - {@link fr.n7.game.Connaissance#getVisible Visible}
* - {@link fr.n7.game.Connaissance#getDescriptions Descriptions}
*
*
* @see fr.n7.game.GamePackage#getConnaissance()
* @model
* @generated
*/
public interface Connaissance extends EObject
{
/**
* Returns the value of the 'Nom' attribute.
*
*
* @return the value of the 'Nom' attribute.
* @see #setNom(String)
* @see fr.n7.game.GamePackage#getConnaissance_Nom()
* @model
* @generated
*/
String getNom();
/**
* Sets the value of the '{@link fr.n7.game.Connaissance#getNom Nom}' attribute.
*
*
* @param value the new value of the 'Nom' attribute.
* @see #getNom()
* @generated
*/
void setNom(String value);
/**
* Returns the value of the 'Visible' containment reference.
*
*
* @return the value of the 'Visible' containment reference.
* @see #setVisible(Condition)
* @see fr.n7.game.GamePackage#getConnaissance_Visible()
* @model containment="true"
* @generated
*/
Condition getVisible();
/**
* Sets the value of the '{@link fr.n7.game.Connaissance#getVisible Visible}' containment reference.
*
*
* @param value the new value of the 'Visible' containment reference.
* @see #getVisible()
* @generated
*/
void setVisible(Condition value);
/**
* Returns the value of the 'Descriptions' containment reference list.
* The list contents are of type {@link fr.n7.game.Description}.
*
*
* @return the value of the 'Descriptions' containment reference list.
* @see fr.n7.game.GamePackage#getConnaissance_Descriptions()
* @model containment="true"
* @generated
*/
EList getDescriptions();
} // Connaissance