final MySecurityGenerator<ManageableSecurity> fourthGenerator = getSwaptionParityGenerator(securityMaster);
configure(firstGenerator);
configure(secondGenerator);
configure(thirdGenerator);
configure(fourthGenerator);
final TreePortfolioNodeGenerator rootNode = new TreePortfolioNodeGenerator(new StaticNameGenerator("Swap / Swaption Portfolio"));
rootNode.addChildNode(firstGenerator);
rootNode.addChildNode(secondGenerator);
rootNode.addChildNode(thirdGenerator);
rootNode.addChildNode(fourthGenerator);
return rootNode;
}