630631632633634635636637638639640
if (priorNode == null) { // add to toplevel list this.toplevelList.add(thisNode); } else { // add to prior node as child priorNode.addChild(thisNode); } } } }