blob: 14a3237f2dfb209a69066cbbd5e3a279d0acbe6b [file] [log] [blame]
/**
* <copyright>
* </copyright>
*
* $Id: MethodLibrary.java,v 1.1 2006/05/01 19:49:59 jthario Exp $
*/
package org.eclipse.epf.xml.uma;
import org.eclipse.emf.common.util.EList;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Method Library</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* A Method Library is a physical container for Method Plugins and Method Configuration definitions. All Method Elements are stored in a Method Library.
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.epf.xml.uma.MethodLibrary#getMethodPlugin <em>Method Plugin</em>}</li>
* <li>{@link org.eclipse.epf.xml.uma.MethodLibrary#getMethodConfiguration <em>Method Configuration</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.epf.xml.uma.UmaPackage#getMethodLibrary()
* @model extendedMetaData="name='MethodLibrary' kind='elementOnly'"
* @generated
*/
public interface MethodLibrary extends MethodUnit {
/**
* Returns the value of the '<em><b>Method Plugin</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.epf.xml.uma.MethodPlugin}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Method Plugin</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>Method Plugin</em>' containment reference list.
* @see org.eclipse.epf.xml.uma.UmaPackage#getMethodLibrary_MethodPlugin()
* @model type="org.eclipse.epf.xml.uma.MethodPlugin" containment="true" resolveProxies="false"
* extendedMetaData="kind='element' name='MethodPlugin'"
* @generated
*/
EList getMethodPlugin();
/**
* Returns the value of the '<em><b>Method Configuration</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.epf.xml.uma.MethodConfiguration}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Method Configuration</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>Method Configuration</em>' containment reference list.
* @see org.eclipse.epf.xml.uma.UmaPackage#getMethodLibrary_MethodConfiguration()
* @model type="org.eclipse.epf.xml.uma.MethodConfiguration" containment="true" resolveProxies="false"
* extendedMetaData="kind='element' name='MethodConfiguration'"
* @generated
*/
EList getMethodConfiguration();
} // MethodLibrary