Table of Contents

Interface ISendSignalAction

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

The public interface for SendSignalAction

[DefaultImplementationType(typeof(SendSignalAction))]
[XmlDefaultImplementationType(typeof(SendSignalAction))]
[ModelRepresentationClass("http://www.eclipse.org/uml2/5.0.0/UML#//SendSignalAction")]
public interface ISendSignalAction : IInvocationAction, IAction, IExecutableNode, IActivityNode, IActivityContent, IRedefinableElement, INamedElement, IElement, IEModelElement, IModelElement, INotifyPropertyChanged, INotifyPropertyChanging
Inherited Members

Properties

Signal

The Signal whose instance is transmitted to the target. <p>From package UML::Actions.</p>

[XmlElementName("signal")]
[XmlAttribute(true)]
ISignal Signal { get; set; }

Property Value

ISignal

Target

The InputPin that provides the target object to which the Signal instance is sent. <p>From package UML::Actions.</p>

[Browsable(false)]
[XmlElementName("target")]
[XmlAttribute(false)]
[Containment]
IInputPin Target { get; set; }

Property Value

IInputPin

Methods

Number_order(object, object)

The number and order of argument InputPins must be the same as the number and order of attributes of the signal. argument->size()=signal.allAttributes()->size()

bool Number_order(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

Type_ordering_multiplicity(object, object)

The type, ordering, and multiplicity of an argument InputPin must be the same as the corresponding attribute of the signal. let attribute: OrderedSet(Property) = signal.allAttributes() in Sequence{1..argument->size()}->forAll(i | argument->at(i).type.conformsTo(attribute->at(i).type) and argument->at(i).isOrdered = attribute->at(i).isOrdered and argument->at(i).compatibleWith(attribute->at(i)))

bool Type_ordering_multiplicity(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

Type_target_pin(object, object)

If onPort is not empty, the Port given by onPort must be an owned or inherited feature of the type of the target InputPin. not onPort->isEmpty() implies target.type.oclAsType(Classifier).allFeatures()->includes(onPort)

bool Type_target_pin(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