blob: 31baa4a3019a114c3b2dadcb4d8b67973787674e [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>Content Package</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* A Content Package is special Method Package that contains Content Elements and Content Elements, only. Examples for Content Element are Artifacts, Tasks, Roles, etc. A key separation of concerns in UMA is the distinction between Method Content and Process. This separation is enforced by special package types, which do not allow the mixing of method content with processes.
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.epf.uma.ContentPackage#getContentElements <em>Content Elements</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.epf.uma.UmaPackage#getContentPackage()
* @model
* @generated
*/
public interface ContentPackage extends MethodPackage {
/**
* Returns the value of the '<em><b>Content Elements</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.epf.uma.ContentElement}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Content Elements</em>' containment reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Content Elements</em>' containment reference list.
* @see org.eclipse.epf.uma.UmaPackage#getContentPackage_ContentElements()
* @model containment="true" resolveProxies="true" ordered="false"
* @generated
*/
List<ContentElement> getContentElements();
} // ContentPackage