/** * <copyright> * </copyright> * * $Id$ */ package no.playtrd.v10.playtrd; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Player Message</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link no.playtrd.v10.playtrd.PlayerMessage#getPlayer <em>Player</em>}</li> * <li>{@link no.playtrd.v10.playtrd.PlayerMessage#getMessage <em>Message</em>}</li> * </ul> * </p> * * @see no.playtrd.v10.playtrd.PlaytrdPackage#getPlayerMessage() * @model * @generated */ public interface PlayerMessage extends Scripted { /** * Returns the value of the '<em><b>Player</b></em>' reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Player</em>' reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Player</em>' reference. * @see #setPlayer(Player) * @see no.playtrd.v10.playtrd.PlaytrdPackage#getPlayerMessage_Player() * @model * @generated */ Player getPlayer(); /** * Sets the value of the '{@link no.playtrd.v10.playtrd.PlayerMessage#getPlayer <em>Player</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Player</em>' reference. * @see #getPlayer() * @generated */ void setPlayer(Player value); /** * Returns the value of the '<em><b>Message</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Message</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Message</em>' attribute. * @see #setMessage(String) * @see no.playtrd.v10.playtrd.PlaytrdPackage#getPlayerMessage_Message() * @model * @generated */ String getMessage(); /** * Sets the value of the '{@link no.playtrd.v10.playtrd.PlayerMessage#getMessage <em>Message</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Message</em>' attribute. * @see #getMessage() * @generated */ void setMessage(String value); } // PlayerMessage