/** */ package com.opcoach.project; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Task</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link com.opcoach.project.MTask#getName <em>Name</em>}</li> * <li>{@link com.opcoach.project.MTask#getSubTasks <em>Sub Tasks</em>}</li> * <li>{@link com.opcoach.project.MTask#getResponsable <em>Responsable</em>}</li> * </ul> * </p> * * @see com.opcoach.project.MProjectPackage#getTask() * @model * @generated */ public interface MTask extends EObject { /** * Returns the value of the '<em><b>Name</b></em>' attribute. * <!-- 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 com.opcoach.project.MProjectPackage#getTask_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link com.opcoach.project.MTask#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); /** * Returns the value of the '<em><b>Sub Tasks</b></em>' containment reference list. * The list contents are of type {@link com.opcoach.project.MTask}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Sub Tasks</em>' containment reference list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Sub Tasks</em>' containment reference list. * @see com.opcoach.project.MProjectPackage#getTask_SubTasks() * @model containment="true" * @generated */ EList<Task> getSubTasks(); /** * Returns the value of the '<em><b>Responsable</b></em>' reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Responsable</em>' reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Responsable</em>' reference. * @see #setResponsable(MPerson) * @see com.opcoach.project.MProjectPackage#getTask_Responsable() * @model * @generated */ Person getResponsable(); /** * Sets the value of the '{@link com.opcoach.project.MTask#getResponsable <em>Responsable</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Responsable</em>' reference. * @see #getResponsable() * @generated */ void setResponsable(Person value); } // MTask