blob: 39ee55fae3465da2fea179dba545699dc3ea8378 [file] [log] [blame]
//------------------------------------------------------------------------------
// Copyright (c) 2005, 2006 IBM Corporation and others.
// All rights reserved. This program and the accompanying materials
// are made available under the terms of the Eclipse Public License v1.0
// which accompanies this distribution, and is available at
// http://www.eclipse.org/legal/epl-v10.html
//
// Contributors:
// IBM Corporation - initial implementation
//------------------------------------------------------------------------------
package org.eclipse.epf.uma;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Task Description</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.epf.uma.TaskDescription#getPurpose <em>Purpose</em>}</li>
* <li>{@link org.eclipse.epf.uma.TaskDescription#getAlternatives <em>Alternatives</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.epf.uma.UmaPackage#getTaskDescription()
* @model
* @generated
*/
public interface TaskDescription extends ContentDescription {
/**
* Returns the value of the '<em><b>Purpose</b></em>' attribute.
* The default value is <code>""</code>.
* <!-- 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.uma.UmaPackage#getTaskDescription_Purpose()
* @model default="" dataType="org.eclipse.epf.uma.String" ordered="false"
* @generated
*/
String getPurpose();
/**
* Sets the value of the '{@link org.eclipse.epf.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);
/**
* Returns the value of the '<em><b>Alternatives</b></em>' attribute.
* The default value is <code>""</code>.
* <!-- 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.uma.UmaPackage#getTaskDescription_Alternatives()
* @model default="" dataType="org.eclipse.epf.uma.String" ordered="false"
* @generated
*/
String getAlternatives();
/**
* Sets the value of the '{@link org.eclipse.epf.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);
} // TaskDescription