コード例 #1
0
        public static DslModeling::ElementLink Connect(DslModeling::ModelElement source, DslModeling::ModelElement target)
        {
            if (source == null)
            {
                throw new global::System.ArgumentNullException("source");
            }
            if (target == null)
            {
                throw new global::System.ArgumentNullException("target");
            }

            if (CanAcceptSourceAndTarget(source, target))
            {
                if (source is global::JA.Risk.Port)
                {
                    if (target is global::JA.Risk.Port)
                    {
                        global::JA.Risk.Port     sourceAccepted = (global::JA.Risk.Port)source;
                        global::JA.Risk.Port     targetAccepted = (global::JA.Risk.Port)target;
                        DslModeling::ElementLink result         = new global::JA.Risk.Interaction(sourceAccepted, targetAccepted);
                        if (DslModeling::DomainClassInfo.HasNameProperty(result))
                        {
                            DslModeling::DomainClassInfo.SetUniqueName(result);
                        }
                        return(result);
                    }
                }
            }
            global::System.Diagnostics.Debug.Fail("Having agreed that the connection can be accepted we should never fail to make one.");
            throw new global::System.InvalidOperationException();
        }
コード例 #2
0
ファイル: DomainClasses.cs プロジェクト: jarnold30/Risk
        protected override void MergeDisconnect(DslModeling::ModelElement sourceElement)
        {
            if (sourceElement == null)
            {
                throw new global::System.ArgumentNullException("sourceElement");
            }

            global::JA.Risk.Port sourcePort1 = sourceElement as global::JA.Risk.Port;
            if (sourcePort1 != null)
            {
                // Delete link for path ContainerHasPorts.Ports

                foreach (DslModeling::ElementLink link in global::JA.Risk.ContainerHasPorts.GetLinks((global::JA.Risk.Container) this, sourcePort1))
                {
                    // Delete the link, but without possible delete propagation to the element since it's moving to a new location.
                    link.Delete(global::JA.Risk.ContainerHasPorts.ContainerDomainRoleId, global::JA.Risk.ContainerHasPorts.PortDomainRoleId);
                }

                return;
            }

            global::JA.Risk.Asset sourceAsset2 = sourceElement as global::JA.Risk.Asset;
            if (sourceAsset2 != null)
            {
                // Delete link for path ContainerHasAssets.Assets

                foreach (DslModeling::ElementLink link in global::JA.Risk.ContainerHasAssets.GetLinks((global::JA.Risk.Container) this, sourceAsset2))
                {
                    // Delete the link, but without possible delete propagation to the element since it's moving to a new location.
                    link.Delete(global::JA.Risk.ContainerHasAssets.ContainerDomainRoleId, global::JA.Risk.ContainerHasAssets.AssetDomainRoleId);
                }

                return;
            }

            global::JA.Risk.ThreatAgent sourceThreatAgent3 = sourceElement as global::JA.Risk.ThreatAgent;
            if (sourceThreatAgent3 != null)
            {
                // Delete link for path ContainerHasAgents.ThreatAgents

                foreach (DslModeling::ElementLink link in global::JA.Risk.ContainerHasAgents.GetLinks((global::JA.Risk.Container) this, sourceThreatAgent3))
                {
                    // Delete the link, but without possible delete propagation to the element since it's moving to a new location.
                    link.Delete(global::JA.Risk.ContainerHasAgents.ContainerDomainRoleId, global::JA.Risk.ContainerHasAgents.ThreatAgentDomainRoleId);
                }

                return;
            }
            // Fall through to base class if this class hasn't handled the unmerge.
            base.MergeDisconnect(sourceElement);
        }
コード例 #3
0
ファイル: DomainClasses.cs プロジェクト: jarnold30/Risk
        /// <summary>
        /// Called by the Merge process to create a relationship between
        /// this target element and the specified source element.
        /// Typically, a parent-child relationship is established
        /// between the target element (the parent) and the source element
        /// (the child), but any relationship can be established.
        /// </summary>
        /// <param name="sourceElement">The element that is to be related to this model element.</param>
        /// <param name="elementGroup">The group of source ModelElements that have been rehydrated into the target store.</param>
        /// <remarks>
        /// This method is overriden to create the relationship between the target element and the specified source element.
        /// The base method does nothing.
        /// </remarks>
        protected override void MergeRelate(DslModeling::ModelElement sourceElement, DslModeling::ElementGroup elementGroup)
        {
            // In general, sourceElement is allowed to be null, meaning that the elementGroup must be parsed for special cases.
            // However this is not supported in generated code.  Use double-deriving on this class and then override MergeRelate completely if you
            // need to support this case.
            if (sourceElement == null)
            {
                throw new global::System.ArgumentNullException("sourceElement");
            }


            global::JA.Risk.Port sourcePort1 = sourceElement as global::JA.Risk.Port;
            if (sourcePort1 != null)
            {
                // Create link for path ContainerHasPorts.Ports
                this.Ports.Add(sourcePort1);

                return;
            }

            global::JA.Risk.Asset sourceAsset2 = sourceElement as global::JA.Risk.Asset;
            if (sourceAsset2 != null)
            {
                // Create link for path ContainerHasAssets.Assets
                this.Assets.Add(sourceAsset2);

                return;
            }

            global::JA.Risk.ThreatAgent sourceThreatAgent3 = sourceElement as global::JA.Risk.ThreatAgent;
            if (sourceThreatAgent3 != null)
            {
                // Create link for path ContainerHasAgents.ThreatAgents
                this.ThreatAgents.Add(sourceThreatAgent3);

                return;
            }

            // Sdk workaround to runtime bug #879350 (DSL: can't copy and paste a MEL that has a MEX). Avoid MergeRelate on ModelElementExtension
            // during a "Paste".
            if (sourceElement is DslModeling::ExtensionElement &&
                sourceElement.Store.TransactionManager.CurrentTransaction.TopLevelTransaction.Context.ContextInfo.ContainsKey("{9DAFD42A-DC0E-4d78-8C3F-8266B2CF8B33}"))
            {
                return;
            }

            // Fall through to base class if this class hasn't handled the merge.
            base.MergeRelate(sourceElement, elementGroup);
        }