Ejemplo n.º 1
0
        public FlowBranchingIterator StartFlowBranching(Iterator iterator, FlowBranching parent)
        {
            FlowBranchingIterator branching = new FlowBranchingIterator(parent, iterator);

            current_flow_branching = branching;
            return(branching);
        }
Ejemplo n.º 2
0
        public FlowBranchingIterator StartFlowBranching(Iterator iterator)
        {
            FlowBranchingIterator branching = new FlowBranchingIterator(CurrentBranching, iterator);

            current_flow_branching = branching;
            return(branching);
        }
Ejemplo n.º 3
0
        public FlowBranchingIterator StartFlowBranching(StateMachineInitializer iterator, FlowBranching parent)
        {
            FlowBranchingIterator branching = new FlowBranchingIterator(parent, iterator);

            current_flow_branching = branching;
            return(branching);
        }