Exemplo n.º 1
0
 /// <summary>
 /// Add a branch to this node
 /// </summary>
 /// <param name="branchInformation">The information of the branch</param>
 /// <param name="nextNode">The next node at this branch</param>
 public void AddBranch(BranchInformation branchInformation, FlowChartNode nextNode)
 {
     CheckFreeze();
     branches.Add(branchInformation, nextNode);
 }
Exemplo n.º 2
0
 public LazyBindingEntry(FlowChartNode from, string destination, BranchInformation branchInfo)
 {
     this.from        = from;
     this.destination = destination;
     this.branchInfo  = branchInfo;
 }
Exemplo n.º 3
0
 public BranchSelectedData(BranchInformation selectedBranchInformation)
 {
     this.selectedBranchInformation = selectedBranchInformation;
 }