/** * generated by Xtext 2.23.0 */ package xtext.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: *

* * * @see xtext.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 xtext.game.GamePackage#getConnaissance_Nom() * @model * @generated */ String getNom(); /** * Sets the value of the '{@link xtext.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 xtext.game.GamePackage#getConnaissance_Visible() * @model containment="true" * @generated */ Condition getVisible(); /** * Sets the value of the '{@link xtext.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 xtext.game.Description}. * * * @return the value of the 'Descriptions' containment reference list. * @see xtext.game.GamePackage#getConnaissance_Descriptions() * @model containment="true" * @generated */ EList getDescriptions(); } // Connaissance