blob: da1a894b67175220fcae4f33d2d8ae584e2e9ad8 [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>Process Description</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.epf.uma.ProcessDescription#getScope <em>Scope</em>}</li>
* <li>{@link org.eclipse.epf.uma.ProcessDescription#getUsageNotes <em>Usage Notes</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.epf.uma.UmaPackage#getProcessDescription()
* @model
* @generated
*/
public interface ProcessDescription extends ActivityDescription {
/**
* Returns the value of the '<em><b>Scope</b></em>' attribute.
* The default value is <code>""</code>.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Defines the scope of the Process, i.e. which types of projects does it address and which not.
* <!-- end-model-doc -->
* @return the value of the '<em>Scope</em>' attribute.
* @see #setScope(String)
* @see org.eclipse.epf.uma.UmaPackage#getProcessDescription_Scope()
* @model default="" dataType="org.eclipse.epf.uma.String" ordered="false"
* @generated
*/
String getScope();
/**
* Sets the value of the '{@link org.eclipse.epf.uma.ProcessDescription#getScope <em>Scope</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Scope</em>' attribute.
* @see #getScope()
* @generated
*/
void setScope(String value);
/**
* Returns the value of the '<em><b>Usage Notes</b></em>' attribute.
* The default value is <code>""</code>.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Any additional notes on how to apply and instantiate this process for a project.
* <!-- end-model-doc -->
* @return the value of the '<em>Usage Notes</em>' attribute.
* @see #setUsageNotes(String)
* @see org.eclipse.epf.uma.UmaPackage#getProcessDescription_UsageNotes()
* @model default="" dataType="org.eclipse.epf.uma.String" ordered="false"
* @generated
*/
String getUsageNotes();
/**
* Sets the value of the '{@link org.eclipse.epf.uma.ProcessDescription#getUsageNotes <em>Usage Notes</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Usage Notes</em>' attribute.
* @see #getUsageNotes()
* @generated
*/
void setUsageNotes(String value);
} // ProcessDescription