Given two connected nodes add another node between them. 'newNode' will be placed in same position in predecessor list as 'before' (old node). @param after Node to insert this node after @param newNode new node to insert. This node must have already been added to the plan. @param before Node to ins
(
E after,
E newNode,
E before)
| 573 | * connecting nodes. |
| 574 | */ |
| 575 | public void insertBetween( |
| 576 | E after, |
| 577 | E newNode, |
| 578 | E before) throws PlanException { |
| 579 | doInsertBetween(after, newNode, before, true); |
| 580 | } |
| 581 | |
| 582 | /* |
| 583 | * Private method to perform the insertBetween operation with the ability to turn off |
nothing calls this directly
no test coverage detected