blob: da52fdb1e1a8b47d3ac27a8126767685ee0469cb [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>Method Configuration</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* A Method Configuration is a collection of selected Method Models and MethodPackages. A configuration can be exported into its own standalone library when it includes the full transitive closure of all elements all other elements depend on.
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.epf.uma.MethodConfiguration#getMethodPluginSelection <em>Method Plugin Selection</em>}</li>
* <li>{@link org.eclipse.epf.uma.MethodConfiguration#getMethodPackageSelection <em>Method Package Selection</em>}</li>
* <li>{@link org.eclipse.epf.uma.MethodConfiguration#getProcessViews <em>Process Views</em>}</li>
* <li>{@link org.eclipse.epf.uma.MethodConfiguration#getDefaultView <em>Default View</em>}</li>
* <li>{@link org.eclipse.epf.uma.MethodConfiguration#getBaseConfigurations <em>Base Configurations</em>}</li>
* <li>{@link org.eclipse.epf.uma.MethodConfiguration#getSubtractedCategory <em>Subtracted Category</em>}</li>
* <li>{@link org.eclipse.epf.uma.MethodConfiguration#getAddedCategory <em>Added Category</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.epf.uma.UmaPackage#getMethodConfiguration()
* @model
* @generated
*/
public interface MethodConfiguration extends MethodUnit {
/**
* Returns the value of the '<em><b>Method Plugin Selection</b></em>' reference list.
* The list contents are of type {@link org.eclipse.epf.uma.MethodPlugin}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Method Plugin Selection</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>Method Plugin Selection</em>' reference list.
* @see org.eclipse.epf.uma.UmaPackage#getMethodConfiguration_MethodPluginSelection()
* @model type="org.eclipse.epf.uma.MethodPlugin" ordered="false"
* @generated
*/
List getMethodPluginSelection();
/**
* Returns the value of the '<em><b>Method Package Selection</b></em>' reference list.
* The list contents are of type {@link org.eclipse.epf.uma.MethodPackage}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Method Package Selection</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>Method Package Selection</em>' reference list.
* @see org.eclipse.epf.uma.UmaPackage#getMethodConfiguration_MethodPackageSelection()
* @model type="org.eclipse.epf.uma.MethodPackage" ordered="false"
* @generated
*/
List getMethodPackageSelection();
/**
* Returns the value of the '<em><b>Process Views</b></em>' reference list.
* The list contents are of type {@link org.eclipse.epf.uma.ContentCategory}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Process Views</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>Process Views</em>' reference list.
* @see org.eclipse.epf.uma.UmaPackage#getMethodConfiguration_ProcessViews()
* @model type="org.eclipse.epf.uma.ContentCategory" ordered="false"
* @generated
*/
List getProcessViews();
/**
* Returns the value of the '<em><b>Default View</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Default View</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Default View</em>' reference.
* @see #setDefaultView(ContentCategory)
* @see org.eclipse.epf.uma.UmaPackage#getMethodConfiguration_DefaultView()
* @model
* @generated
*/
ContentCategory getDefaultView();
/**
* Sets the value of the '{@link org.eclipse.epf.uma.MethodConfiguration#getDefaultView <em>Default View</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Default View</em>' reference.
* @see #getDefaultView()
* @generated
*/
void setDefaultView(ContentCategory value);
/**
* Returns the value of the '<em><b>Base Configurations</b></em>' reference list.
* The list contents are of type {@link org.eclipse.epf.uma.MethodConfiguration}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Base Configurations</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>Base Configurations</em>' reference list.
* @see org.eclipse.epf.uma.UmaPackage#getMethodConfiguration_BaseConfigurations()
* @model type="org.eclipse.epf.uma.MethodConfiguration" ordered="false"
* @generated
*/
List getBaseConfigurations();
/**
* Returns the value of the '<em><b>Subtracted Category</b></em>' reference list.
* The list contents are of type {@link org.eclipse.epf.uma.ContentCategory}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Subtracted Category</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>Subtracted Category</em>' reference list.
* @see org.eclipse.epf.uma.UmaPackage#getMethodConfiguration_SubtractedCategory()
* @model type="org.eclipse.epf.uma.ContentCategory" ordered="false"
* @generated
*/
List getSubtractedCategory();
/**
* Returns the value of the '<em><b>Added Category</b></em>' reference list.
* The list contents are of type {@link org.eclipse.epf.uma.ContentCategory}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Added Category</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>Added Category</em>' reference list.
* @see org.eclipse.epf.uma.UmaPackage#getMethodConfiguration_AddedCategory()
* @model type="org.eclipse.epf.uma.ContentCategory" ordered="false"
* @generated
*/
List getAddedCategory();
} // MethodConfiguration