コード例 #1
0
 /// <summary>
 /// Abstract end visitor, which calls the end visitor of the base class (Columbus.Lim.Asg.Nodes.Base.Base) of the Columbus.Lim.Asg.Nodes.Base.Named node.
 /// </summary>
 /// <param name="node">[in] The node which is visited.</param>
 public virtual void visitEnd(Columbus.Lim.Asg.Nodes.Base.Named node, bool callVirtualBase)
 {
     visitEnd((Columbus.Lim.Asg.Nodes.Base.Base)node, false);
 }
コード例 #2
0
        // ---------- Edge setter function(s) ----------

        /// <summary>
        /// Adds a new dependsOn edge to the node.
        /// </summary>
        /// <param name="node">[in] The end point of the new dependsOn edge.</param>
        /// <param name="acValue">[in] The value of the association class.</param>
        /// <exception cref="Columbus.Lim.Asg.LimException">Throws LimException if there is something wrong with the given node.</exception>
        public void addDependsOn(Columbus.Lim.Asg.Nodes.Base.Named node, string acValue)
        {
            addDependsOn(node.Id, acValue);
        }