Beispiel #1
0
 public StateLink(StateNode source, StateNode related, string name)
 {
     Source  = source;
     Related = related;
     Name    = name;
 }
Beispiel #2
0
 private static bool DisplayAsStartNode(StateNode node)
 {
     return(node.Type == NodeType.Start &&
            node.IsAutomatic &&
            string.Equals(node.Label ?? node.Name, "Start", System.StringComparison.OrdinalIgnoreCase));
 }