blob: ea4d8ef8937dcbe82ba65f3e2e2266a9651bbc07 [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 Plugin</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* A Method Plugin is a Method Element that represents a physical container for Method Packages. It defines a granularity level for the modularization and organization of method content and processes. A Method Plugin can extend many other Method Plugins and it can be extended by many Method Plugins. It can also be used stand-alone, i.e. with no Extension relationship to other plug-ins.
* Method Plugin conceptually represents a unit for configuration, modularization, extension, packaging, and deployment of method content and processes. A Process Engineer shall design his Plugins and allocate his content to these Plugins with requirements for extensibility, modularity, reuse, and maintainability in mind.
* Special extensibility mechanisms defined for the meta-classes Variability Element and Process Contribution allow Plugin content to directly contribute new content, replace existing content, or to cross-reference to any Content Element or Process within another Plugin that it extends. Similar to UML 2.0's 'package merge' mechanism transformation interpretations, interpreting these Method Plugin mechanisms results into new extended Method Content and Processes.
*
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.epf.uma.MethodPlugin#getUserChangeable <em>User Changeable</em>}</li>
* <li>{@link org.eclipse.epf.uma.MethodPlugin#getMethodPackages <em>Method Packages</em>}</li>
* <li>{@link org.eclipse.epf.uma.MethodPlugin#getBases <em>Bases</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.epf.uma.UmaPackage#getMethodPlugin()
* @model
* @generated
*/
public interface MethodPlugin extends MethodUnit, org.eclipse.epf.uma.Package {
/**
* Returns the value of the '<em><b>User Changeable</b></em>' attribute.
* The default value is <code>"true"</code>.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>User Changeable</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>User Changeable</em>' attribute.
* @see #setUserChangeable(Boolean)
* @see org.eclipse.epf.uma.UmaPackage#getMethodPlugin_UserChangeable()
* @model default="true" dataType="org.eclipse.epf.uma.Boolean" required="true" ordered="false"
* @generated
*/
Boolean getUserChangeable();
/**
* Sets the value of the '{@link org.eclipse.epf.uma.MethodPlugin#getUserChangeable <em>User Changeable</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>User Changeable</em>' attribute.
* @see #getUserChangeable()
* @generated
*/
void setUserChangeable(Boolean value);
/**
* Returns the value of the '<em><b>Method Packages</b></em>' containment 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 Packages</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 Packages</em>' containment reference list.
* @see org.eclipse.epf.uma.UmaPackage#getMethodPlugin_MethodPackages()
* @model containment="true" resolveProxies="true" required="true" ordered="false"
* @generated
*/
List<MethodPackage> getMethodPackages();
/**
* Returns the value of the '<em><b>Bases</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>Bases</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>Bases</em>' reference list.
* @see org.eclipse.epf.uma.UmaPackage#getMethodPlugin_Bases()
* @model ordered="false"
* @generated
*/
List<MethodPlugin> getBases();
} // MethodPlugin