org.eclipse.ocl.examples.pivot
Interface TemplateSignature

All Superinterfaces:
DomainElement, Element, org.eclipse.emf.ecore.EObject, org.eclipse.emf.common.notify.Notifier, PivotObject, Visitable
All Known Implementing Classes:
TemplateSignatureImpl

public interface TemplateSignature
extends Element

A representation of the model object 'Template Signature'. A template signature bundles the set of formal template parameters for a templated element.

The following features are supported:

See Also:
PivotPackage.getTemplateSignature()
Generated

Method Summary
 java.util.List<TemplateParameter> getOwnedParameter()
          Returns the value of the 'Owned Parameter' containment reference list.
 TemplateableElement getTemplate()
          Returns the value of the 'Template' container reference.
 void setTemplate(TemplateableElement value)
          Sets the value of the 'Template' container reference.
 
Methods inherited from interface org.eclipse.ocl.examples.pivot.Element
allOwnedElements, getETarget, getExtension, getOwnedAnnotation, getOwnedComment, getValue
 
Methods inherited from interface org.eclipse.emf.ecore.EObject
eAllContents, eClass, eContainer, eContainingFeature, eContainmentFeature, eContents, eCrossReferences, eGet, eGet, eInvoke, eIsProxy, eIsSet, eResource, eSet, eUnset
 
Methods inherited from interface org.eclipse.emf.common.notify.Notifier
eAdapters, eDeliver, eNotify, eSetDeliver
 
Methods inherited from interface org.eclipse.ocl.examples.pivot.util.Visitable
accept, eClass
 

Method Detail

getOwnedParameter

@NonNull
java.util.List<TemplateParameter> getOwnedParameter()
Returns the value of the 'Owned Parameter' containment reference list. The list contents are of type TemplateParameter. It is bidirectional and its opposite is 'Signature'. The formal template parameters that are owned by this template signature.

Returns:
the value of the 'Owned Parameter' containment reference list.
See Also:
PivotPackage.getTemplateSignature_OwnedParameter(), TemplateParameter.getSignature()
Generated

getTemplate

TemplateableElement getTemplate()
Returns the value of the 'Template' container reference. It is bidirectional and its opposite is 'Owned Template Signature'. The element that owns this template signature.

Returns:
the value of the 'Template' container reference.
See Also:
setTemplate(TemplateableElement), PivotPackage.getTemplateSignature_Template(), TemplateableElement.getOwnedTemplateSignature()
Generated

setTemplate

void setTemplate(TemplateableElement value)
Sets the value of the 'Template' container reference.

Parameters:
value - the new value of the 'Template' container reference.
See Also:
getTemplate()
Generated