blob: 14b52cfea609d09477d73714f1c53e7469d1e88c [file] [log] [blame]
/**
* <copyright>
* </copyright>
*
* $Id: TaskDescription.java,v 1.1 2008/01/15 08:52:07 jtham Exp $
*/
package org.eclipse.epf.xml.uma;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Task Description</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* A generalized Content Description that is used to store the textual description for a Task.
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.epf.xml.uma.TaskDescription#getAlternatives <em>Alternatives</em>}</li>
* <li>{@link org.eclipse.epf.xml.uma.TaskDescription#getPurpose <em>Purpose</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.epf.xml.uma.UmaPackage#getTaskDescription()
* @model extendedMetaData="name='TaskDescription' kind='elementOnly'"
* @generated
*/
public interface TaskDescription extends ContentDescription {
/**
* Returns the value of the '<em><b>Alternatives</b></em>' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Comprises of summaries describing important exceptional and non-standard ways of achieving this Task's development goals that were not covered by the Task's Steps.
* <!-- end-model-doc -->
* @return the value of the '<em>Alternatives</em>' attribute.
* @see #setAlternatives(String)
* @see org.eclipse.epf.xml.uma.UmaPackage#getTaskDescription_Alternatives()
* @model unique="false" dataType="org.eclipse.emf.ecore.xml.type.String"
* extendedMetaData="kind='element' name='Alternatives'"
* @generated
*/
String getAlternatives();
/**
* Sets the value of the '{@link org.eclipse.epf.xml.uma.TaskDescription#getAlternatives <em>Alternatives</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Alternatives</em>' attribute.
* @see #getAlternatives()
* @generated
*/
void setAlternatives(String value);
/**
* Returns the value of the '<em><b>Purpose</b></em>' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Summarizes the main reason for performing this Task and what is intended to be achieved.
* <!-- end-model-doc -->
* @return the value of the '<em>Purpose</em>' attribute.
* @see #setPurpose(String)
* @see org.eclipse.epf.xml.uma.UmaPackage#getTaskDescription_Purpose()
* @model unique="false" dataType="org.eclipse.emf.ecore.xml.type.String"
* extendedMetaData="kind='element' name='Purpose'"
* @generated
*/
String getPurpose();
/**
* Sets the value of the '{@link org.eclipse.epf.xml.uma.TaskDescription#getPurpose <em>Purpose</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Purpose</em>' attribute.
* @see #getPurpose()
* @generated
*/
void setPurpose(String value);
} // TaskDescription