public GraphNode(FGrapher fGraph, String sourceFile, String traceMsg, String cssClass, bool breakFlag) : base(fGraph, sourceFile, traceMsg, breakFlag) { this.CssClass = cssClass; }
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"); }
public GraphLegend(FGrapher fGraph, String sourceFile, String traceMsg, bool breakFlag) : base(fGraph, sourceFile, traceMsg, breakFlag) { }
public GraphItem(FGrapher fGraph, String sourceFile, String traceMsg, bool breakFlag) { this.fGraph = fGraph; this.SourceFile = sourceFile; this.traceMsg = traceMsg; this.breakFlag = breakFlag; }
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); }
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); } } }
public GraphLinkByReference(FGrapher fGraph, String sourceFile, JToken data) : base(fGraph, sourceFile, data) { }
public GraphLinkByName(FGrapher fGraph, String sourceFile, JToken data) : base(fGraph, sourceFile, data) { this.Source = data.RequiredValue("source"); this.Target = data.RequiredValue("target"); }
public GraphLinkByItem(FGrapher fGraph, String sourceFile, JToken data) : base(fGraph, sourceFile, data) { this.Source = data.RequiredValue("source"); this.Item = data.OptionalValue("item"); }
public GraphLinkByBinding(FGrapher fGraph, String sourceFile, JToken data) : base(fGraph, sourceFile, data) { this.Source = data.RequiredValue("source"); }
public Program() { this.fGrapher = new FGrapher(); this.fGrapher.ConsoleLogging(); }