blob: db1138dd206725a3d0399f764b67e74bbe695f42 [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>Activity Description</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.epf.uma.ActivityDescription#getPurpose <em>Purpose</em>}</li>
* <li>{@link org.eclipse.epf.uma.ActivityDescription#getAlternatives <em>Alternatives</em>}</li>
* <li>{@link org.eclipse.epf.uma.ActivityDescription#getHowtoStaff <em>Howto Staff</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.epf.uma.UmaPackage#getActivityDescription()
* @model
* @generated
*/
public interface ActivityDescription extends BreakdownElementDescription {
/**
* 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 Activity, describes what the activity as a whole is intended to achieve.
* <!-- end-model-doc -->
* @return the value of the '<em>Purpose</em>' attribute.
* @see #setPurpose(String)
* @see org.eclipse.epf.uma.UmaPackage#getActivityDescription_Purpose()
* @model default="" dataType="org.eclipse.epf.uma.String" ordered="false"
* @generated
*/
String getPurpose();
/**
* Sets the value of the '{@link org.eclipse.epf.uma.ActivityDescription#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 doing the work of this Activity not covered by the Activity's Tasks.
* <!-- end-model-doc -->
* @return the value of the '<em>Alternatives</em>' attribute.
* @see #setAlternatives(String)
* @see org.eclipse.epf.uma.UmaPackage#getActivityDescription_Alternatives()
* @model default="" dataType="org.eclipse.epf.uma.String" ordered="false"
* @generated
*/
String getAlternatives();
/**
* Sets the value of the '{@link org.eclipse.epf.uma.ActivityDescription#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>Howto Staff</b></em>' attribute.
* The default value is <code>""</code>.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Provides background on who should be involved in this activity what are the required skills, experience, and perhaps attitudes.
* <!-- end-model-doc -->
* @return the value of the '<em>Howto Staff</em>' attribute.
* @see #setHowtoStaff(String)
* @see org.eclipse.epf.uma.UmaPackage#getActivityDescription_HowtoStaff()
* @model default="" dataType="org.eclipse.epf.uma.String" ordered="false"
* @generated
*/
String getHowtoStaff();
/**
* Sets the value of the '{@link org.eclipse.epf.uma.ActivityDescription#getHowtoStaff <em>Howto Staff</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Howto Staff</em>' attribute.
* @see #getHowtoStaff()
* @generated
*/
void setHowtoStaff(String value);
} // ActivityDescription