Map out the location of the nodes by package name. Seems like we should be able to do this while we build above... I'm tired... just going to do this.
( TreeNode node )
| 575 | I'm tired... just going to do this. |
| 576 | */ |
| 577 | void mapNodes( TreeNode node ) { |
| 578 | addNodeMap( node ); |
| 579 | |
| 580 | Enumeration e = node.children(); |
| 581 | while(e.hasMoreElements()) { |
| 582 | TreeNode tn = (TreeNode)e.nextElement(); |
| 583 | mapNodes( tn ); |
| 584 | } |
| 585 | } |
| 586 | |
| 587 | /** |
| 588 | map a single node up to the root |
no test coverage detected