/**
* <copyright>
* </copyright>
*
* $Id$
*/
package SAG;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Actor</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link SAG.Actor#getMy_goal <em>My goal</em>}</li>
* <li>{@link SAG.Actor#getName <em>Name</em>}</li>
* </ul>
* </p>
*
* @see SAG.SAGPackage#getActor()
* @model
* @generated
*/
public interface Actor extends EObject {
/**
* Returns the value of the '<em><b>My goal</b></em>' reference list.
* The list contents are of type {@link SAG.Goal}.
* It is bidirectional and its opposite is '{@link SAG.Goal#getDepender <em>Depender</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>My goal</em>' reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>My goal</em>' reference list.
* @see SAG.SAGPackage#getActor_My_goal()
* @see SAG.Goal#getDepender
* @model opposite="depender"
* @generated
*/
EList<Goal> getMy_goal();
/**
* Returns the value of the '<em><b>Name</b></em>' attribute.
* The default value is <code>""</code>.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Name</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Name</em>' attribute.
* @see #setName(String)
* @see SAG.SAGPackage#getActor_Name()
* @model default=""
* @generated
*/
String getName();
/**
* Sets the value of the '{@link SAG.Actor#getName <em>Name</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Name</em>' attribute.
* @see #getName()
* @generated
*/
void setName(String value);
} // Actor