Interface IReadLinkAction
The public interface for ReadLinkAction
[DefaultImplementationType(typeof(ReadLinkAction))]
[XmlDefaultImplementationType(typeof(ReadLinkAction))]
[ModelRepresentationClass("http://www.eclipse.org/uml2/5.0.0/UML#//ReadLinkAction")]
public interface IReadLinkAction : ILinkAction, IAction, IExecutableNode, IActivityNode, IActivityContent, IRedefinableElement, INamedElement, IElement, IEModelElement, IModelElement, INotifyPropertyChanged, INotifyPropertyChanging
- Inherited Members
Properties
Result
The OutputPin on which the objects retrieved from the "open" end of those links whose values on other ends are given by the endData. <p>From package UML::Actions.</p>
[Browsable(false)]
[XmlElementName("result")]
[XmlAttribute(false)]
[Containment]
IOutputPin Result { get; set; }
Property Value
Methods
Compatible_multiplicity(object, object)
The multiplicity of the open Association end must be compatible with the multiplicity of the result OutputPin. self.openEnd()->first().compatibleWith(result)
bool Compatible_multiplicity(object diagnostics, object context)
Parameters
diagnostics
objectThe chain of diagnostics to which problems are to be appended.
context
objectThe cache of context-specific information.
Returns
Navigable_open_end(object, object)
The open end must be navigable. self.openEnd()->first().isNavigable()
bool Navigable_open_end(object diagnostics, object context)
Parameters
diagnostics
objectThe chain of diagnostics to which problems are to be appended.
context
objectThe cache of context-specific information.
Returns
One_open_end(object, object)
Exactly one linkEndData specification (corresponding to the "open" end) must not have an value InputPin. self.openEnd()->size() = 1
bool One_open_end(object diagnostics, object context)
Parameters
diagnostics
objectThe chain of diagnostics to which problems are to be appended.
context
objectThe cache of context-specific information.
Returns
OpenEnd()
Returns the ends corresponding to endData with no value InputPin. (A well-formed ReadLinkAction is constrained to have only one of these.) result = (endData->select(value=null).end->asOrderedSet()) <p>From package UML::Actions.</p>
IOrderedSetExpression<IProperty> OpenEnd()
Returns
Type_and_ordering(object, object)
The type and ordering of the result OutputPin are same as the type and ordering of the open Association end. self.openEnd()->forAll(type=result.type and isOrdered=result.isOrdered)
bool Type_and_ordering(object diagnostics, object context)
Parameters
diagnostics
objectThe chain of diagnostics to which problems are to be appended.
context
objectThe cache of context-specific information.