blob: 208cf3def6c2314d5e23de1a66857859f4d3e955 [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>Discipline Grouping</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* Discipline Groupings are used to group Disciplines. For example, the Discipline Grouping "Software Disciplines" would be the group of all disciplines related to developing software such as "Requirements Management" or "Testing"; "IT Infrastructure Management" would be a Disciplines Grouping for disciplines such as "IT Operational Services", "IT Customer Relationships", or "IT Enabling Services". Disciplines can be associated to more than one Discipline Grouping.
*
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.epf.uma.DisciplineGrouping#getDisciplines <em>Disciplines</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.epf.uma.UmaPackage#getDisciplineGrouping()
* @model
* @generated
*/
public interface DisciplineGrouping extends ContentCategory {
/**
* Returns the value of the '<em><b>Disciplines</b></em>' reference list.
* The list contents are of type {@link org.eclipse.epf.uma.Discipline}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Disciplines</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>Disciplines</em>' reference list.
* @see org.eclipse.epf.uma.UmaPackage#getDisciplineGrouping_Disciplines()
* @model ordered="false"
* @generated
*/
List<Discipline> getDisciplines();
} // DisciplineGrouping