blob: 6e6a94aad53d2dd181cbb696645dca0dfb27e0c1 [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;
import java.util.List;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Role Set</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* A Role Set organizes Roles into categories. It is used to group roles together that have certain commonalities. For example, the "Analysts" Role Set could group the "Business Process Analyst", "System Analyst", as well as "Requirements Specifier" roles. All of these work with similar techniques and have overlapping skills, but are required as distinct roles for a method (e.g. the method the IBM Rational Unified Process is based on).
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.epf.uma.RoleSet#getRoles <em>Roles</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.epf.uma.UmaPackage#getRoleSet()
* @model
* @generated
*/
public interface RoleSet extends ContentCategory {
/**
* Returns the value of the '<em><b>Roles</b></em>' reference list.
* The list contents are of type {@link org.eclipse.epf.uma.Role}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Roles</em>' reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Roles</em>' reference list.
* @see org.eclipse.epf.uma.UmaPackage#getRoleSet_Roles()
* @model type="org.eclipse.epf.uma.Role" ordered="false"
* @generated
*/
List getRoles();
} // RoleSet