blob: 39165e960bb9cea9eacc3e82fda5c09b6b3f9ef0 [file] [log] [blame]
/**
* <copyright>
* </copyright>
*
* $Id: Role.java,v 1.2 2006/06/23 00:01:26 jxi Exp $
*/
package org.eclipse.epf.xml.uma;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.util.FeatureMap;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Role</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* A Content Element that defines a set of related skills, competencies, and responsibilities. Roles are used by Tasks to define who performs them as well as define a set of work products they are responsible for.
* A Role defines a set of related skills, competencies, and responsibilities of an individual or a set of individuals. Roles are not individuals or resources. Individual members of the development organization will wear different hats, or perform different roles. The mapping from individual to role, performed by the project manager when planning and staffing for a project, allows different individuals to act as several different roles, and for a role to be played by several individuals.
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.epf.xml.uma.Role#getGroup2 <em>Group2</em>}</li>
* <li>{@link org.eclipse.epf.xml.uma.Role#getResponsibleFor <em>Responsible For</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.epf.xml.uma.UmaPackage#getRole()
* @model extendedMetaData="name='Role' kind='elementOnly'"
* @generated
*/
public interface Role extends ContentElement {
/**
* Returns the value of the '<em><b>Group2</b></em>' attribute list.
* The list contents are of type {@link org.eclipse.emf.ecore.util.FeatureMap.Entry}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Group2</em>' attribute list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Group2</em>' attribute list.
* @see org.eclipse.epf.xml.uma.UmaPackage#getRole_Group2()
* @model unique="false" dataType="org.eclipse.emf.ecore.EFeatureMapEntry" many="true"
* extendedMetaData="kind='group' name='group:21'"
* @generated
*/
FeatureMap getGroup2();
/**
* Returns the value of the '<em><b>Responsible For</b></em>' attribute list.
* The list contents are of type {@link java.lang.String}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Responsible For</em>' attribute list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Responsible For</em>' attribute list.
* @see org.eclipse.epf.xml.uma.UmaPackage#getRole_ResponsibleFor()
* @model type="java.lang.String" unique="false" dataType="org.eclipse.emf.ecore.xml.type.String" transient="true" volatile="true" derived="true"
* extendedMetaData="kind='element' name='ResponsibleFor' group='#group:21'"
* @generated
*/
EList getResponsibleFor();
} // Role