Esempio n. 1
0
 public GraphNode(FGrapher fGraph, String sourceFile, String traceMsg, String cssClass, bool breakFlag) :
     base(fGraph,
          sourceFile,
          traceMsg,
          breakFlag)
 {
     this.CssClass = cssClass;
 }
Esempio n. 2
0
 public GraphLegend(FGrapher fGraph, String sourceFile, JToken data) :
     base(fGraph,
          sourceFile,
          data.OptionalValue("traceMsg"),
          data.OptionalBoolValue("break"))
 {
     this.LegendName = data.RequiredValue("legendName");
     this.Item       = data.RequiredValue("item");
     this.CssClass   = data.RequiredValue("cssClass");
 }
Esempio n. 3
0
 public GraphLegend(FGrapher fGraph,
                    String sourceFile,
                    String traceMsg,
                    bool breakFlag) :
     base(fGraph,
          sourceFile,
          traceMsg,
          breakFlag)
 {
 }
Esempio n. 4
0
 public GraphItem(FGrapher fGraph,
                  String sourceFile,
                  String traceMsg,
                  bool breakFlag)
 {
     this.fGraph     = fGraph;
     this.SourceFile = sourceFile;
     this.traceMsg   = traceMsg;
     this.breakFlag  = breakFlag;
 }
Esempio n. 5
0
 public GraphLink(FGrapher fGraph, String sourceFile, JToken data) :
     base(fGraph,
          sourceFile,
          data.OptionalValue("traceMsg"),
          data.OptionalBoolValue("break"))
 {
     this.data          = data;
     this.Key           = data.OptionalValue("key");
     this.TraversalName = data.RequiredValue("traversalName");
     this.Depth         = data.OptionalIntValue("depth", 1);
 }
Esempio n. 6
0
 public GraphNode(FGrapher fGraph, String sourceFile, JToken data) :
     base(fGraph,
          sourceFile,
          data.OptionalValue("traceMsg"),
          data.OptionalBoolValue("break"))
 {
     this.NodeName          = data.RequiredValue("nodeName");
     this.DisplayName       = data.RequiredValue("displayName");
     this.SortPrefix        = data.OptionalValue("sortPrefix");
     this.CssClass          = data.OptionalValue("cssClass");
     this.LhsAnnotationText = data.OptionalValue("lhsAnnotationText");
     this.RhsAnnotationText = data.OptionalValue("rhsAnnotationText");
     {
         JToken anchor = data["anchor"];
         if (anchor != null)
         {
             this.Anchor = new GraphAnchor(anchor);
         }
     }
 }
Esempio n. 7
0
 public GraphLinkByReference(FGrapher fGraph, String sourceFile, JToken data) : base(fGraph, sourceFile, data)
 {
 }
Esempio n. 8
0
 public GraphLinkByName(FGrapher fGraph, String sourceFile, JToken data) : base(fGraph, sourceFile, data)
 {
     this.Source = data.RequiredValue("source");
     this.Target = data.RequiredValue("target");
 }
Esempio n. 9
0
 public GraphLinkByItem(FGrapher fGraph, String sourceFile, JToken data) : base(fGraph, sourceFile, data)
 {
     this.Source = data.RequiredValue("source");
     this.Item   = data.OptionalValue("item");
 }
Esempio n. 10
0
 public GraphLinkByBinding(FGrapher fGraph, String sourceFile, JToken data) : base(fGraph, sourceFile, data)
 {
     this.Source = data.RequiredValue("source");
 }
Esempio n. 11
0
 public Program()
 {
     this.fGrapher = new FGrapher();
     this.fGrapher.ConsoleLogging();
 }