Example #1
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="filters">List of filters used to determine when to create new graph</param>
 /// <param name="defaultMode">Default mode of the layer section</param>
 /// <param name="direction">The direction of the node</param>
 public LayerSectionNode(LayerSectionFilter[] filters, LayerSectionNodeDefaultMode defaultMode, LayerSectionGraphDirection direction)
 {
     _filters      = filters;
     _defaultMode  = defaultMode;
     _graphEntries = new Dictionary <string, GraphEntry>();
     _direction    = direction;
     IsMaster      = true;
 }
Example #2
0
 /// <summary>
 /// Constructor        
 /// </summary>
 /// <param name="filters">List of filters used to determine when to create new graph</param>        
 /// <param name="defaultMode">Default mode of the layer section</param>
 /// <param name="direction">The direction of the node</param>
 public LayerSectionNode(LayerSectionFilter[] filters, LayerSectionNodeDefaultMode defaultMode, LayerSectionGraphDirection direction)
 {
     _filters = filters;
     _defaultMode = defaultMode;
     _graphEntries = new Dictionary<string, GraphEntry>();
     _direction = direction;
     IsMaster = true;
 }