|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface InteractionOperand
A representation of the model object 'Interaction Operand'. An interaction operand is contained in a combined fragment. An interaction operand represents one operand of the expression given by the enclosing combined fragment.
The following features are supported:
UMLPackage.getInteractionOperand()
Field Summary |
---|
Fields inherited from interface org.eclipse.uml2.uml.NamedElement |
---|
SEPARATOR |
Fields inherited from interface org.eclipse.uml2.uml.NamedElement |
---|
SEPARATOR |
Method Summary | |
---|---|
InteractionFragment |
createFragment(java.lang.String name,
org.eclipse.emf.ecore.EClass eClass)
Creates a new InteractionFragment , with the specified 'Name', and appends it to the 'Fragment' containment reference list |
InteractionConstraint |
createGuard(java.lang.String name)
Creates a new InteractionConstraint ,with the specified 'Name', and sets the 'Guard' containment reference |
InteractionFragment |
getFragment(java.lang.String name)
Retrieves the first InteractionFragment with the specified 'Name' from the 'Fragment' containment reference list |
InteractionFragment |
getFragment(java.lang.String name,
boolean ignoreCase,
org.eclipse.emf.ecore.EClass eClass,
boolean createOnDemand)
Retrieves the first InteractionFragment with the specified 'Name' from the 'Fragment' containment reference list |
org.eclipse.emf.common.util.EList<InteractionFragment> |
getFragments()
Returns the value of the 'Fragment' containment reference list. |
InteractionConstraint |
getGuard()
Returns the value of the 'Guard' containment reference. |
void |
setGuard(InteractionConstraint value)
Sets the value of the ' Guard ' containment reference |
boolean |
validateGuardContainReferences(org.eclipse.emf.common.util.DiagnosticChain diagnostics,
java.util.Map<java.lang.Object,java.lang.Object> context)
The guard must contain only references to values local to the Lifeline on which it resides, or values global to the whole Interaction. |
boolean |
validateGuardDirectlyPrior(org.eclipse.emf.common.util.DiagnosticChain diagnostics,
java.util.Map<java.lang.Object,java.lang.Object> context)
The guard must be placed directly prior to (above) the OccurrenceSpecification that will become the first OccurrenceSpecification within this InteractionOperand. |
Methods inherited from interface org.eclipse.uml2.uml.NamedElement |
---|
allNamespaces, allOwningPackages, createDependency, createNameExpression, createUsage, getClientDependencies, getClientDependency, getClientDependency, getLabel, getLabel, getName, getNameExpression, getNamespace, getQualifiedName, getVisibility, isDistinguishableFrom, isSetName, isSetVisibility, separator, setName, setNameExpression, setVisibility, unsetName, unsetVisibility, validateHasNoQualifiedName, validateHasQualifiedName, validateVisibilityNeedsOwnership |
Methods inherited from interface org.eclipse.emf.ecore.EModelElement |
---|
getEAnnotation, getEAnnotations |
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.uml2.uml.InteractionFragment |
---|
createGeneralOrdering, getCovered, getCovered, getCovereds, getEnclosingInteraction, getEnclosingOperand, getGeneralOrdering, getGeneralOrdering, getGeneralOrderings, setEnclosingInteraction, setEnclosingOperand |
Methods inherited from interface org.eclipse.uml2.uml.NamedElement |
---|
allNamespaces, allOwningPackages, createDependency, createNameExpression, createUsage, getClientDependencies, getClientDependency, getClientDependency, getLabel, getLabel, getName, getNameExpression, getNamespace, getQualifiedName, getVisibility, isDistinguishableFrom, isSetName, isSetVisibility, separator, setName, setNameExpression, setVisibility, unsetName, unsetVisibility, validateHasNoQualifiedName, validateHasQualifiedName, validateVisibilityNeedsOwnership |
Methods inherited from interface org.eclipse.emf.ecore.EModelElement |
---|
getEAnnotation, getEAnnotations |
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 |
Method Detail |
---|
InteractionConstraint getGuard()
This feature subsets the following features:
Constraint of the operand.
setGuard(InteractionConstraint)
,
UMLPackage.getInteractionOperand_Guard()
void setGuard(InteractionConstraint value)
Guard
' containment reference.
value
- the new value of the 'Guard' containment reference.getGuard()
InteractionConstraint createGuard(java.lang.String name)
InteractionConstraint
,with the specified 'Name', and sets the 'Guard' containment reference.
name
- The 'Name' for the new InteractionConstraint
, or null
.
InteractionConstraint
.getGuard()
org.eclipse.emf.common.util.EList<InteractionFragment> getFragments()
InteractionFragment
.
It is bidirectional and its opposite is 'Enclosing Operand
'.
This feature subsets the following features:
The fragments of the operand.
UMLPackage.getInteractionOperand_Fragment()
,
InteractionFragment.getEnclosingOperand()
InteractionFragment createFragment(java.lang.String name, org.eclipse.emf.ecore.EClass eClass)
InteractionFragment
, with the specified 'Name', and appends it to the 'Fragment' containment reference list.
name
- The 'Name' for the new InteractionFragment
, or null
.eClass
- The Ecore class of the InteractionFragment
to create.
InteractionFragment
.getFragments()
InteractionFragment getFragment(java.lang.String name)
InteractionFragment
with the specified 'Name' from the 'Fragment' containment reference list.
name
- The 'Name' of the InteractionFragment
to retrieve, or null
.
InteractionFragment
with the specified 'Name', or null
.getFragments()
InteractionFragment getFragment(java.lang.String name, boolean ignoreCase, org.eclipse.emf.ecore.EClass eClass, boolean createOnDemand)
InteractionFragment
with the specified 'Name' from the 'Fragment' containment reference list.
name
- The 'Name' of the InteractionFragment
to retrieve, or null
.ignoreCase
- Whether to ignore case in String
comparisons.eClass
- The Ecore class of the InteractionFragment
to retrieve, or null
.createOnDemand
- Whether to create a InteractionFragment
on demand if not found.
InteractionFragment
with the specified 'Name', or null
.getFragments()
boolean validateGuardDirectlyPrior(org.eclipse.emf.common.util.DiagnosticChain diagnostics, java.util.Map<java.lang.Object,java.lang.Object> context)
diagnostics
- The chain of diagnostics to which problems are to be appended.context
- The cache of context-specific information.
boolean validateGuardContainReferences(org.eclipse.emf.common.util.DiagnosticChain diagnostics, java.util.Map<java.lang.Object,java.lang.Object> context)
diagnostics
- The chain of diagnostics to which problems are to be appended.context
- The cache of context-specific information.
|
Copyright 2003, 2007 IBM Corporation and others. All Rights Reserved. |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |