Example #1
0
 /// <summary>
 /// Sets the declares edge.
 /// </summary>
 /// <param name="node">[in] The new end point of the declares edge.</param>
 /// <exception cref="Columbus.Lim.Asg.LimException">Throws LimException if there's something wrong with the given node.</exception>
 public void setDeclares(Columbus.Lim.Asg.Nodes.Logical.Member node)
 {
     if (m_declares != 0)
     {
     }
     m_declares = node.Id;
 }
Example #2
0
 /// <summary>
 /// Sets the languageVariant edge.
 /// </summary>
 /// <param name="node">[in] The new end point of the languageVariant edge.</param>
 /// <exception cref="Columbus.Lim.Asg.LimException">Throws LimException if there's something wrong with the given node.</exception>
 public void setLanguageVariant(Columbus.Lim.Asg.Nodes.Logical.Member node)
 {
     if (m_languageVariant != 0)
     {
     }
     m_languageVariant = node.Id;
 }
Example #3
0
 /// <summary>
 /// Sets the aggregated edge.
 /// </summary>
 /// <param name="node">[in] The new end point of the aggregated edge.</param>
 /// <exception cref="Columbus.Lim.Asg.LimException">Throws LimException if there's something wrong with the given node.</exception>
 public void setAggregated(Columbus.Lim.Asg.Nodes.Logical.Member node)
 {
     if (m_aggregated != 0)
     {
     }
     m_aggregated = node.Id;
 }
Example #4
0
 /// <summary>
 /// Adds a new instance edge to the node and inserts it after the other ones.
 /// </summary>
 /// <param name="node">[in] The end point of the new instance edge.</param>
 /// <exception cref="Columbus.Lim.Asg.LimException">Throws LimException if there is something wrong with the given node.</exception>
 public void addInstance(Columbus.Lim.Asg.Nodes.Logical.Member node)
 {
     addInstance(node.Id);
 }
Example #5
0
 /// <summary>
 /// Adds a new variant edge to the node and inserts it after the other ones.
 /// </summary>
 /// <param name="node">[in] The end point of the new variant edge.</param>
 /// <exception cref="Columbus.Lim.Asg.LimException">Throws LimException if there is something wrong with the given node.</exception>
 public void addVariant(Columbus.Lim.Asg.Nodes.Logical.Member node)
 {
     addVariant(node.Id);
 }
Example #6
0
 /// <summary>
 /// Abstract end visitor, which calls the end visitor of the base class (Columbus.Lim.Asg.Nodes.Base.Named) of the Columbus.Lim.Asg.Nodes.Logical.Member node.
 /// </summary>
 /// <param name="node">[in] The node which is visited.</param>
 public virtual void visitEnd(Columbus.Lim.Asg.Nodes.Logical.Member node, bool callVirtualBase)
 {
     visitEnd((Columbus.Lim.Asg.Nodes.Base.Named)node, false);
 }
Example #7
0
        // ---------- Edge setter function(s) ----------

        /// <summary>
        /// Adds a new hasMember edge to the node and inserts it after the other ones.
        /// </summary>
        /// <param name="node">[in] The end point of the new hasMember edge.</param>
        /// <exception cref="Columbus.Lim.Asg.LimException">Throws LimException if there is something wrong with the given node.</exception>
        public void addHasMember(Columbus.Lim.Asg.Nodes.Logical.Member node)
        {
            addHasMember(node.Id);
        }