Exemple #1
0
            /// <summary>
            /// Adds the given element to the collection
            /// </summary>
            /// <param name="item">The item to add</param>
            public override void Add(IModelElement item)
            {
                IPortA inputPortsCasted = item.As <IPortA>();

                if ((inputPortsCasted != null))
                {
                    this._parent.InputPorts.Add(inputPortsCasted);
                }
                IPortA outputPortsCasted = item.As <IPortA>();

                if ((outputPortsCasted != null))
                {
                    this._parent.OutputPorts.Add(outputPortsCasted);
                }
            }
Exemple #2
0
            /// <summary>
            /// Removes the given item from the collection
            /// </summary>
            /// <returns>True, if the item was removed, otherwise False</returns>
            /// <param name="item">The item that should be removed</param>
            public override bool Remove(IModelElement item)
            {
                IPortA portAItem = item.As <IPortA>();

                if (((portAItem != null) &&
                     this._parent.InputPorts.Remove(portAItem)))
                {
                    return(true);
                }
                if (((portAItem != null) &&
                     this._parent.OutputPorts.Remove(portAItem)))
                {
                    return(true);
                }
                return(false);
            }