blob: 48309ee2e90435258a10d92aabb9f1fed42c49f7 [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 Element</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* Every class defined in this specification is derived from Method Element. In other words Method Element is the root generalization for all UMA classes and defines a common set of attributes inherited by every other element type of this model. Method Element itself is derived from Packageable Element from the UML 2.0 Infrastructure. Method Element inherits the Name attribute from Packageable Element's super class. Every element defined as a UMA instance is derived from Model Element. Every Method Element in-stance is at least defined by a unique id, a name, as well as brief description.
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.epf.uma.MethodElement#getGuid <em>Guid</em>}</li>
* <li>{@link org.eclipse.epf.uma.MethodElement#getBriefDescription <em>Brief Description</em>}</li>
* <li>{@link org.eclipse.epf.uma.MethodElement#getOwnedRules <em>Owned Rules</em>}</li>
* <li>{@link org.eclipse.epf.uma.MethodElement#getMethodElementProperty <em>Method Element Property</em>}</li>
* <li>{@link org.eclipse.epf.uma.MethodElement#getSuppressed <em>Suppressed</em>}</li>
* <li>{@link org.eclipse.epf.uma.MethodElement#getOrderingGuide <em>Ordering Guide</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.epf.uma.UmaPackage#getMethodElement()
* @model abstract="true"
* @generated
*/
public interface MethodElement extends PackageableElement {
/**
* Returns the value of the '<em><b>Guid</b></em>' attribute.
* The default value is <code>""</code>.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Every instance of Method Element has a global unique id.
* <!-- end-model-doc -->
* @return the value of the '<em>Guid</em>' attribute.
* @see #setGuid(String)
* @see org.eclipse.epf.uma.UmaPackage#getMethodElement_Guid()
* @model default="" dataType="org.eclipse.epf.uma.String"
* @generated
*/
String getGuid();
/**
* Sets the value of the '{@link org.eclipse.epf.uma.MethodElement#getGuid <em>Guid</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Guid</em>' attribute.
* @see #getGuid()
* @generated
*/
void setGuid(String value);
/**
* Returns the value of the '<em><b>Brief Description</b></em>' attribute.
* The default value is <code>""</code>.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Every instance of Method Element shall be briefly described with one or two sentences summarizing the element.
* <!-- end-model-doc -->
* @return the value of the '<em>Brief Description</em>' attribute.
* @see #setBriefDescription(String)
* @see org.eclipse.epf.uma.UmaPackage#getMethodElement_BriefDescription()
* @model default="" dataType="org.eclipse.epf.uma.String"
* @generated
*/
String getBriefDescription();
/**
* Sets the value of the '{@link org.eclipse.epf.uma.MethodElement#getBriefDescription <em>Brief Description</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Brief Description</em>' attribute.
* @see #getBriefDescription()
* @generated
*/
void setBriefDescription(String value);
/**
* Returns the value of the '<em><b>Owned Rules</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.epf.uma.Constraint}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Owned Rules</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>Owned Rules</em>' containment reference list.
* @see org.eclipse.epf.uma.UmaPackage#getMethodElement_OwnedRules()
* @model type="org.eclipse.epf.uma.Constraint" containment="true" resolveProxies="true" ordered="false"
* @generated
*/
List getOwnedRules();
/**
* Returns the value of the '<em><b>Method Element Property</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.epf.uma.MethodElementProperty}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Method Element Property</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 Element Property</em>' containment reference list.
* @see org.eclipse.epf.uma.UmaPackage#getMethodElement_MethodElementProperty()
* @model type="org.eclipse.epf.uma.MethodElementProperty" containment="true" resolveProxies="true" ordered="false"
* @generated
*/
List getMethodElementProperty();
/**
* Returns the value of the '<em><b>Suppressed</b></em>' attribute.
* The default value is <code>"false"</code>.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* If a Variability Element is derived from another Variability Element using the Extends Variability Specialization then this attribute can be used to suppress inherited Method Elements that were part of the based-on Variability Element, which can be any type of Method Element. In other words, if this attribute is set to true on a Method Element that has the same name than an inherited method element then it will not be regarded as inherited at all.
* <!-- end-model-doc -->
* @return the value of the '<em>Suppressed</em>' attribute.
* @see #setSuppressed(Boolean)
* @see org.eclipse.epf.uma.UmaPackage#getMethodElement_Suppressed()
* @model default="false"
* @generated
*/
Boolean getSuppressed();
/**
* Sets the value of the '{@link org.eclipse.epf.uma.MethodElement#getSuppressed <em>Suppressed</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Suppressed</em>' attribute.
* @see #getSuppressed()
* @generated
*/
void setSuppressed(Boolean value);
/**
* Returns the value of the '<em><b>Ordering Guide</b></em>' attribute.
* The default value is <code>""</code>.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* This attribute is used for CASE tool realizations of this model to contain information about layout and ordering of the method element and its parts.
* <!-- end-model-doc -->
* @return the value of the '<em>Ordering Guide</em>' attribute.
* @see #setOrderingGuide(String)
* @see org.eclipse.epf.uma.UmaPackage#getMethodElement_OrderingGuide()
* @model default="" dataType="org.eclipse.epf.uma.String"
* @generated
*/
String getOrderingGuide();
/**
* Sets the value of the '{@link org.eclipse.epf.uma.MethodElement#getOrderingGuide <em>Ordering Guide</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Ordering Guide</em>' attribute.
* @see #getOrderingGuide()
* @generated
*/
void setOrderingGuide(String value);
} // MethodElement