Esempio n. 1
0
        public override void BuildDependencyGraph(DependencyGraph g, Vertex root)
        {
            Vertex vertex = g.AddVertex(this.Name, this.Name.GetLabel());

            base.GraphVertex = vertex;
            this.m_Exp.BuildDependencyGraph(g, vertex);
        }
Esempio n. 2
0
 public override void BuildDependencyGraph(DependencyGraph g, Vertex root)
 {
     if (!this.GetLabel().Equals("NULL", StringComparison.InvariantCultureIgnoreCase))
     {
         string label = this.GetLabel();
         Vertex to    = g.AddVertex(this, label);
         base.GraphVertex = to;
         g.AddEdge(root, to);
     }
 }