Table of Contents

Interface IActivityParameterNode

Namespace
NMF.Interop.Uml
Assembly
NMF.UMLInterop.dll

The public interface for ActivityParameterNode

[DefaultImplementationType(typeof(ActivityParameterNode))]
[XmlDefaultImplementationType(typeof(ActivityParameterNode))]
[ModelRepresentationClass("http://www.eclipse.org/uml2/5.0.0/UML#//ActivityParameterNode")]
public interface IActivityParameterNode : IObjectNode, ITypedElement, IActivityNode, IActivityContent, IRedefinableElement, INamedElement, IElement, IEModelElement, IModelElement, INotifyPropertyChanged, INotifyPropertyChanging
Inherited Members

Properties

Parameter

The Parameter for which the ActivityParameterNode will be accepting or providing values. <p>From package UML::Activities.</p>

[XmlElementName("parameter")]
[XmlAttribute(true)]
IParameter Parameter { get; set; }

Property Value

IParameter

Methods

Has_parameters(object, object)

The parameter of an ActivityParameterNode must be from the containing Activity. activity.ownedParameter->includes(parameter)

bool Has_parameters(object diagnostics, object context)

Parameters

diagnostics object

The chain of diagnostics to which problems are to be appended.

context object

The cache of context-specific information.

Returns

bool

No_edges(object, object)

An ActivityParameterNode may have all incoming ActivityEdges or all outgoing ActivityEdges, but it must not have both incoming and outgoing ActivityEdges. incoming->isEmpty() or outgoing->isEmpty()

bool No_edges(object diagnostics, object context)

Parameters

diagnostics object

The chain of diagnostics to which problems are to be appended.

context object

The cache of context-specific information.

Returns

bool

No_incoming_edges(object, object)

An ActivityParameterNode with no incoming ActivityEdges and one or more outgoing ActivityEdges must have a parameter with direction in or inout. (outgoing->notEmpty() and incoming->isEmpty()) implies (parameter.direction = ParameterDirectionKind::_'in' or parameter.direction = ParameterDirectionKind::inout)

bool No_incoming_edges(object diagnostics, object context)

Parameters

diagnostics object

The chain of diagnostics to which problems are to be appended.

context object

The cache of context-specific information.

Returns

bool

No_outgoing_edges(object, object)

An ActivityParameterNode with no outgoing ActivityEdges and one or more incoming ActivityEdges must have a parameter with direction out, inout, or return. (incoming->notEmpty() and outgoing->isEmpty()) implies (parameter.direction = ParameterDirectionKind::out or parameter.direction = ParameterDirectionKind::inout or parameter.direction = ParameterDirectionKind::return)

bool No_outgoing_edges(object diagnostics, object context)

Parameters

diagnostics object

The chain of diagnostics to which problems are to be appended.

context object

The cache of context-specific information.

Returns

bool

Same_type(object, object)

The type of an ActivityParameterNode is the same as the type of its parameter. type = parameter.type

bool Same_type(object diagnostics, object context)

Parameters

diagnostics object

The chain of diagnostics to which problems are to be appended.

context object

The cache of context-specific information.

Returns

bool